Updated Mysql database update.

This commit is contained in:
Brett.Nordin
2017-05-11 14:04:59 -06:00
parent 6d0c441e52
commit a4085ca98e

View File

@ -5,3 +5,4 @@ UPDATE (account) SET name = REPLACE(name, '"', '');
UPDATE (clan_map_marker) SET label = REPLACE(label, '"', '');
UPDATE (territory) SET name = REPLACE(name, '"', '');
ALTER TABLE `player` CHANGE COLUMN `hitpoints` `hitpoints` VARCHAR(1024) NOT NULL DEFAULT '[]' ;
ALTER TABLE `player` DROP PRIMARY KEY, ADD PRIMARY KEY (`id`, `account_uid`);