mirror of
https://github.com/araxiaonline/mod-azerothshard.git
synced 2026-06-14 02:02:20 -04:00
24 lines
323 B
SQL
24 lines
323 B
SQL
|
|
|
|
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS `quest_bugged`;
|
|
|
|
|
|
CREATE TABLE `quest_bugged` (
|
|
`ID` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
|
`bugged` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0: no autocomplete, 1: complete, 2: complete and reward',
|
|
`comment` text,
|
|
PRIMARY KEY (`ID`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|