*Fix build with GCC, thanks to Brian.

--HG--
branch : trunk
rename : sql/updates/7234_world_spell_ranks.sql => sql/updates/7236_world_spell_ranks.sql
This commit is contained in:
QAston
2010-01-29 19:08:42 +01:00
parent 94e5e3970e
commit 785cb86c6a
2 changed files with 12 additions and 3 deletions

View File

@@ -1,3 +1,12 @@
DROP TABLE IF EXISTS `spell_ranks`;
CREATE TABLE `spell_ranks` (
`first_spell_id` INT UNSIGNED NOT NULL DEFAULT 0,
`spell_id` INT UNSIGNED NOT NULL DEFAULT 0,
`rank` TINYINT UNSIGNED NOT NULL DEFAULT 0,
PRIMARY KEY (`first_spell_id`, `rank`),
UNIQUE (`spell_id`)
) ENGINE=MYISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell Rank Data';
INSERT INTO spell_ranks (`first_spell_id`, `spell_id`, `rank`) VALUES
-- Abomination's Might
(53137, 53137, 1),