aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/characters
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2014-10-20 19:25:50 +0200
committerShauren <shauren.trinity@gmail.com>2014-10-20 19:25:50 +0200
commit26c9d4dc418524c327d0754bb32c6c14375ba527 (patch)
tree16801f4b837fe988c1788c7b10f4e3296f1367af /sql/updates/characters
parent3af755e2eeee6e1c9b8be75d0cd65ffd006c09ac (diff)
Core/Entities: First part of required database changes for migrating guids to 128 bit - all fields storing lowguid must be extended to uint64
Diffstat (limited to 'sql/updates/characters')
-rw-r--r--sql/updates/characters/2014_10_20_00_characters.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/sql/updates/characters/2014_10_20_00_characters.sql b/sql/updates/characters/2014_10_20_00_characters.sql
new file mode 100644
index 00000000000..30c57bf5470
--- /dev/null
+++ b/sql/updates/characters/2014_10_20_00_characters.sql
@@ -0,0 +1,6 @@
+ALTER TABLE `arena_team` CHANGE `captainGuid` `captainGuid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0';
+ALTER TABLE `arena_team_member` CHANGE `guid` `guid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0';
+ALTER TABLE `auctionhouse` CHANGE `auctioneerguid` `auctioneerguid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0';
+ALTER TABLE `auctionhouse` CHANGE `itemguid` `itemguid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0';
+ALTER TABLE `auctionhouse` CHANGE `itemowner` `itemowner` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0';
+ALTER TABLE `auctionhouse` CHANGE `buyguid` `buyguid` BIGINT(20) UNSIGNED NOT NULL DEFAULT '0';