diff options
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/master/2018_08_05_00_world.sql | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sql/updates/world/master/2018_08_05_00_world.sql b/sql/updates/world/master/2018_08_05_00_world.sql new file mode 100644 index 00000000000..eabd469a873 --- /dev/null +++ b/sql/updates/world/master/2018_08_05_00_world.sql @@ -0,0 +1,13 @@ +DROP TABLE IF EXISTS `spell_areatrigger_circular`; +CREATE TABLE `spell_areatrigger_circular`( + `SpellMiscId` INT(10) UNSIGNED NOT NULL, + `StartDelay` INT(10) UNSIGNED NOT NULL DEFAULT 0, + `CircleRadius` FLOAT NOT NULL DEFAULT 0, + `BlendFromRadius` FLOAT NOT NULL DEFAULT 0, + `InitialAngle` FLOAT NOT NULL DEFAULT 0, + `ZOffset` FLOAT NOT NULL DEFAULT 0, + `CounterClockwise` TINYINT(3) UNSIGNED NOT NULL DEFAULT 0, + `CanLoop` TINYINT(3) UNSIGNED NOT NULL DEFAULT 0, + `VerifiedBuild` INT(10) UNSIGNED NOT NULL DEFAULT 0, + PRIMARY KEY (`SpellMiscId`) +); |
