mirror of
https://github.com/mangosfour/server.git
synced 2025-12-13 04:37:00 +00:00
6 lines
254 B
SQL
6 lines
254 B
SQL
DROP TABLE IF EXISTS `spell_script_target`;
|
|
CREATE TABLE `spell_script_target` (
|
|
`entry` int(6) unsigned NOT NULL,
|
|
`type` int(8) unsigned default '0',
|
|
`targetEntry` int(11) default '0'
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COMMENT='Spell System';
|