You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: CHANGELOG.md
+3
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
# CHANGELOG
2
2
3
+
## Version 3.6
4
+
5
+
3
6
## Version 3.5
4
7
* (Experimental) Rhost support is in! There's probably a plethora of bugs, but much of the code is working. I'm still hammering out the kinks but feel welcome to try it.
SELECTa.actrole_id,a.actrole_name,c.*FROM vol_actrole AS a LEFT JOIN volv_actor AS c ONc.actor_id=a.actor_id;
1132
+
1122
1133
CREATETABLEIF NOT EXISTS vol_action (
1123
1134
action_id INT UNSIGNED NOT NULL AUTO_INCREMENT,
1124
-
actor_idINT UNSIGNED NOT NULL,
1135
+
actrole_idINT UNSIGNED NOT NULL,
1125
1136
source_id INT UNSIGNED NOT NULL,
1126
1137
action_is_deleted BOOL NOT NULL DEFAULT FALSE,
1127
-
action_type TINYINT UNSIGNED DEFAULT 0,
1128
1138
action_date_created DATETIME NOT NULL,
1129
1139
action_text TEXTNOT NULL,
1130
1140
action_text_render TEXTNULL,
1131
1141
PRIMARY KEY(action_id),
1132
-
INDEX(actor_id, action_is_deleted),
1133
-
FOREIGN KEY(actor_id) REFERENCES vol_actor(actor_id) ONUPDATE CASCADE ON DELETE CASCADE,
1142
+
INDEX(actrole_id, action_is_deleted),
1143
+
FOREIGN KEY(actrole_id) REFERENCES vol_actor(actor_id) ONUPDATE CASCADE ON DELETE CASCADE,
1134
1144
FOREIGN KEY(source_id) REFERENCES vol_action_source(source_id) ONUPDATE CASCADE ON DELETE CASCADE
1135
1145
) ENGINE=InnoDB;
1136
1146
1137
1147
CREATE OR REPLACEVIEWvolv_actionAS
1138
-
SELECTa.action_id,ac.actor_id,ac.scene_id,ac.character_id,ac.character_name,ac.character_objid,ac.actor_type,a.source_id,sc.source_objid,sc.source_vr,sc.source_name,sc.source_type,a.action_type,a.action_date_created,UNIX_TIMESTAMP(a.action_date_created) AS action_date_created_secs,a.action_is_deleted,a.action_text,a.action_text_render
1139
-
FROM vol_action AS a LEFT JOINvolv_actorAS ac ONa.actor_id=ac.actor_idLEFT JOIN vol_action_source AS sc ONa.source_id=sc.source_id
1148
+
SELECTa.action_id,ac.actor_id,ac.actrole_id,ac.actrole_name,ac.scene_id,ac.character_id,ac.character_name,ac.character_objid,ac.actor_type,a.source_id,sc.source_objid,sc.source_vr,sc.source_name,sc.source_type,a.action_date_created,UNIX_TIMESTAMP(a.action_date_created) AS action_date_created_secs,a.action_is_deleted,a.action_text,a.action_text_render
1149
+
FROM vol_action AS a LEFT JOINvolv_actroleAS ac ONa.actrole_id=ac.actrole_idLEFT JOIN vol_action_source AS sc ONa.source_id=sc.source_id
0 commit comments