IconDB/Fixups (obligatory)

* table had wrong engine
 * two hunter pets have unique icons only referenced in creaturefamily.dbc
 * fixed links to rel-tabs
This commit is contained in:
Sarjuuk
2017-03-29 22:16:08 +02:00
parent ee568da6ec
commit cd9f90cea9
6 changed files with 33 additions and 15 deletions

View File

@@ -5,7 +5,7 @@ CREATE TABLE `aowow_icons` (
`name` VARCHAR(55) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
INDEX `name` (`name`)
) COLLATE='utf8_general_ci' ENGINE=MyISAM AUTO_INCREMENT=1;
) COLLATE='utf8_general_ci' ENGINE=InnoDB AUTO_INCREMENT=1;
ALTER TABLE `aowow_items`
ADD COLUMN `iconId` SMALLINT(5) UNSIGNED NOT NULL DEFAULT '0' AFTER `name_loc8`,