Removed class_index field from character_quests table.

Contributed by ReynalDev.
This commit is contained in:
MobiusDevelopment
2020-01-06 14:06:19 +00:00
parent b82d85eba1
commit a91782e8cb
18 changed files with 0 additions and 18 deletions

View File

@ -4,6 +4,5 @@ CREATE TABLE IF NOT EXISTS `character_quests` (
`name` VARCHAR(60) NOT NULL DEFAULT '',
`var` VARCHAR(20) NOT NULL DEFAULT '',
`value` VARCHAR(255) ,
`class_index` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`charId`,`name`,`var`,`class_index`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;