feat(Core/SAI): Wp table add in orientation and delay collumn (#8927)

ADD (Core) Wp table add in orientation and delay collumn
TC Cherry pick of TrinityCore/TrinityCore@4b7d19c
This commit is contained in:
acidmanifesto
2021-11-06 07:43:45 -04:00
committed by GitHub
parent 3d556c4b6e
commit 93bbff4cca
4 changed files with 14 additions and 4 deletions

View File

@@ -0,0 +1,4 @@
-- add revision
INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1635951187866923861');
-- add orientation` and delay into existing wp table
ALTER TABLE `waypoints` ADD COLUMN `orientation` FLOAT DEFAULT 0 NOT NULL AFTER `position_z`, ADD COLUMN `delay` INT UNSIGNED DEFAULT 0 NOT NULL AFTER `orientation`;