mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 17:54:48 +01:00
*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:
@@ -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),
|
||||
Reference in New Issue
Block a user