mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-22 10:05:32 +01:00
SQL: Fixed line endings
This commit is contained in:
@@ -1 +1,19 @@
|
||||
DROP TABLE IF EXISTS `spell_proc`;
|
||||
DROP TABLE IF EXISTS `spell_proc`;
|
||||
CREATE TABLE `spell_proc` (
|
||||
`spellId` mediumint(8) NOT NULL DEFAULT '0',
|
||||
`schoolMask` tinyint(4) NOT NULL DEFAULT '0',
|
||||
`spellFamilyName` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`spellFamilyMask0` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`spellFamilyMask1` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`spellFamilyMask2` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`typeMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`spellTypeMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`spellPhaseMask` int(10) NOT NULL DEFAULT '0',
|
||||
`hitMask` int(10) NOT NULL DEFAULT '0',
|
||||
`attributesMask` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`ratePerMinute` float NOT NULL DEFAULT '0',
|
||||
`chance` float NOT NULL DEFAULT '0',
|
||||
`cooldown` float unsigned NOT NULL DEFAULT '0',
|
||||
`charges` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`spellId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
@@ -1 +1,3 @@
|
||||
DELETE FROM `command` WHERE `name` = 'reload spell_proc';
|
||||
DELETE FROM `command` WHERE `name` = 'reload spell_proc';
|
||||
INSERT INTO `command` VALUES
|
||||
('reload spell_proc',3,'Syntax: .reload spell_proc\nReload spell_proc table.');
|
||||
|
||||
Reference in New Issue
Block a user