mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
4 lines
189 B
SQL
4 lines
189 B
SQL
ALTER TABLE `character_inventory` ADD `bag` TINYINT( 3 ) DEFAULT '0' NOT NULL AFTER `guid` ;
|
|
|
|
ALTER TABLE `character_inventory` DROP PRIMARY KEY ,
|
|
ADD INDEX `idx_guid` ( `guid` , `bag` ) ;
|