| 2950 | -- Table structure for table `spell_disabled` |
| 2951 | -- |
| 2952 | |
| 2953 | DROP TABLE IF EXISTS `spell_disabled`; |
| 2954 | CREATE TABLE `spell_disabled` ( |
| 2955 | `entry` int(11) unsigned NOT NULL default '0' COMMENT 'Spell entry', |
| 2956 | `disable_mask` int(8) unsigned NOT NULL default '0', |
| 2957 | `comment` varchar(64) NOT NULL default '', |
| 2958 | PRIMARY KEY (`entry`) |
| 2959 | ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Disabled Spell System'; |
| 2960 | |
| 2961 | -- |
| 2962 | -- Dumping data for table `spell_disabled` |
| 2963 | -- |
| 2964 | |
| 2965 | LOCK TABLES `spell_disabled` WRITE; |
| 2966 | /*!40000 ALTER TABLE `spell_disabled` DISABLE KEYS */; |
| 2967 | /*!40000 ALTER TABLE `spell_disabled` ENABLE KEYS */; |
| 2968 | UNLOCK TABLES; |
| 2969 | |
| 2970 | -- |