From 9cdc55d023e7f7b281abe7f2c7ce3a3426c6cb9d Mon Sep 17 00:00:00 2001 From: Aokromes Date: Fri, 11 Sep 2015 06:17:11 +0200 Subject: [PATCH] DB/Misc: Fix travis --- sql/base/dev/world_database.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sql/base/dev/world_database.sql b/sql/base/dev/world_database.sql index c1786da8917..a0bb6289bba 100644 --- a/sql/base/dev/world_database.sql +++ b/sql/base/dev/world_database.sql @@ -3609,11 +3609,11 @@ DROP TABLE IF EXISTS `spell_target_position`; CREATE TABLE `spell_target_position` ( `id` mediumint(8) unsigned NOT NULL DEFAULT '0' COMMENT 'Identifier', `EffectIndex` tinyint(3) unsigned NOT NULL DEFAULT '0', - `target_map` smallint(5) unsigned NOT NULL DEFAULT '0', - `target_position_x` float NOT NULL DEFAULT '0', - `target_position_y` float NOT NULL DEFAULT '0', - `target_position_z` float NOT NULL DEFAULT '0', - `target_orientation` float NOT NULL DEFAULT '0', + `MapID` smallint(5) unsigned NOT NULL DEFAULT '0', + `PositionX` float NOT NULL DEFAULT '0', + `PositionY` float NOT NULL DEFAULT '0', + `PositionZ` float NOT NULL DEFAULT '0', + `Orientation` float NOT NULL DEFAULT '0', `VerifiedBuild` smallint(5) DEFAULT '0', PRIMARY KEY (`id`,`EffectIndex`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Spell System';