mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
4 lines
272 B
SQL
4 lines
272 B
SQL
ALTER TABLE `character_queststatus`
|
|
CHANGE `rewarded` `rewarded` tinyint(1) unsigned NOT NULL default '0',
|
|
CHANGE `explored` `explored` tinyint(1) unsigned NOT NULL default '0',
|
|
ADD COLUMN `completed_once` tinyint(1) unsigned NOT NULL default '0' AFTER `explored`;
|