diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2017_11_05_10_world.sql | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sql/updates/world/master/2017_11_05_10_world.sql b/sql/updates/world/master/2017_11_05_10_world.sql new file mode 100644 index 00000000000..e22fb5d56cf --- /dev/null +++ b/sql/updates/world/master/2017_11_05_10_world.sql @@ -0,0 +1,5 @@ +ALTER TABLE `conversation_actors` + CHANGE COLUMN `ConversationActorId` `ConversationActorId` INT(10) UNSIGNED NOT NULL DEFAULT '0', + ADD COLUMN `ConversationActorGuid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0' AFTER `ConversationActorId`, + DROP PRIMARY KEY, + ADD PRIMARY KEY (`ConversationId`, `Idx`); |
