mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 23:01:30 +00:00
4 lines
231 B
SQL
4 lines
231 B
SQL
ALTER TABLE `tasks` ADD `type` TINYINT NOT NULL DEFAULT '0' AFTER `id`;
|
|
ALTER TABLE `tasks` ADD `duration_code` TINYINT NOT NULL DEFAULT '0' AFTER `duration`;
|
|
UPDATE `tasks` SET `type` = '2'; -- we were treating them all as quests
|