mirror of
https://github.com/araxiaonline/TrinityCore.git
synced 2026-06-15 12:42:43 -04:00
10 lines
481 B
SQL
10 lines
481 B
SQL
ALTER TABLE `saved_variables` CHANGE `NextArenaPointDistributionTime` `value` bigint(40) UNSIGNED NOT NULL DEFAULT '0',
|
|
ADD COLUMN `entry` mediumint(11) UNSIGNED NOT NULL DEFAULT '0' FIRST,
|
|
ADD COLUMN `comment` text NOT NULL,
|
|
ADD PRIMARY KEY (`entry`),
|
|
RENAME `worldstates`,
|
|
ROW_FORMAT=DYNAMIC;
|
|
|
|
-- Only posible value is NextArenaPointDistributionTime so make the conversion to custom worldstate
|
|
UPDATE `worldstates` SET `entry`=20001, `comment`='NextArenaPointDistributionTime';
|