diff options
| author | ariel- <ariel-@users.noreply.github.com> | 2017-04-03 01:05:17 -0300 |
|---|---|---|
| committer | ariel- <ariel-@users.noreply.github.com> | 2017-04-03 01:05:36 -0300 |
| commit | 0c698b4567044f67eb52f6459308fb6edf693966 (patch) | |
| tree | 6f8ffcc3a74083c12d4b1729805595fb3bdb6d31 /sql/updates | |
| parent | 008ddbf19785453a40a3446f1637ca9d3cb8fdaa (diff) | |
DB/Schema: add unsigned to some guid fields in characters
Diffstat (limited to 'sql/updates')
| -rw-r--r-- | sql/updates/characters/3.3.5/2017_04_03_00_characters.sql | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sql/updates/characters/3.3.5/2017_04_03_00_characters.sql b/sql/updates/characters/3.3.5/2017_04_03_00_characters.sql new file mode 100644 index 00000000000..8519bd94556 --- /dev/null +++ b/sql/updates/characters/3.3.5/2017_04_03_00_characters.sql @@ -0,0 +1,11 @@ +ALTER TABLE `character_arena_stats` +CHANGE `guid` `guid` INT(10) unsigned NOT NULL DEFAULT '0', +CHANGE `slot` `slot` TINYINT(3) unsigned NOT NULL DEFAULT '0', +CHANGE `matchMakerRating` `matchMakerRating` SMALLINT(5) unsigned NOT NULL DEFAULT 0; + +ALTER TABLE `character_equipmentsets` +CHANGE `guid` `guid` INT(10) unsigned NOT NULL DEFAULT '0', +CHANGE `setguid` `setguid` BIGINT(20) unsigned NOT NULL AUTO_INCREMENT; + +ALTER TABLE `item_loot_money` +CHANGE `container_id` `container_id` INT(10) unsigned NOT NULL DEFAULT '0' COMMENT 'guid of container (item_instance.guid)'; |
