Core/SAI: Add orientation and delay columns to waypoints table (#25472)

* Core/SAI: Add orientation and delay columns to waypoints table

* Rename 2020_99_99_99_world.sql to 2020_09_19_00_world.sql
This commit is contained in:
Giacomo Pozzoni
2020-09-19 23:33:29 +02:00
committed by GitHub
parent 7dd51ae6d9
commit 4b7d19c91b
3 changed files with 6 additions and 2 deletions

View File

@@ -0,0 +1,2 @@
--
ALTER TABLE `waypoints` ADD COLUMN `orientation` FLOAT DEFAULT 0 NOT NULL AFTER `position_z`, ADD COLUMN `delay` INT(10) UNSIGNED DEFAULT 0 NOT NULL AFTER `orientation`;