mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 01:37:02 +00:00
Signed-off-by: VladimirMangos <vladimir@getmangos.com> * Also implement this table reload * Static Spell::SendCastResult function for call not from spell code. Can be also used in scripts where need send explicitly spell cast error to client.
9 lines
481 B
SQL
9 lines
481 B
SQL
ALTER TABLE db_version CHANGE COLUMN required_7945_01_mangos_quest_template required_7980_01_mangos_item_required_target bit;
|
|
|
|
DROP TABLE IF EXISTS `item_required_target`;
|
|
CREATE TABLE `item_required_target` (
|
|
`entry` mediumint(8) unsigned NOT NULL,
|
|
`type` tinyint(3) unsigned NOT NULL default '0',
|
|
`targetEntry` mediumint(8) unsigned NOT NULL default '0',
|
|
UNIQUE KEY `entry_type_target` (`entry`,`type`,`targetEntry`)
|
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED
|