mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 19:37:07 +00:00
13 lines
705 B
SQL
13 lines
705 B
SQL
ALTER TABLE character_db_version CHANGE COLUMN required_9680_01_characters_character_stats required_9686_01_characters_character_queststatus_weekly bit;
|
|
|
|
DROP TABLE IF EXISTS `character_queststatus_weekly`;
|
|
CREATE TABLE `character_queststatus_weekly` (
|
|
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier',
|
|
`quest` int(11) unsigned NOT NULL default '0' COMMENT 'Quest Identifier',
|
|
PRIMARY KEY (`guid`,`quest`),
|
|
KEY `idx_guid` (`guid`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System';
|
|
|
|
ALTER TABLE `saved_variables`
|
|
ADD COLUMN `NextWeeklyQuestResetTime` bigint(40) unsigned NOT NULL default '0' AFTER `NextArenaPointDistributionTime`;
|
|
|