From 4b7d19c91bde2cabb8498809dee935c7efb2660a Mon Sep 17 00:00:00 2001 From: Giacomo Pozzoni Date: Sat, 19 Sep 2020 23:33:29 +0200 Subject: 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 --- sql/updates/world/3.3.5/2020_09_19_00_world.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/updates/world/3.3.5/2020_09_19_00_world.sql (limited to 'sql') diff --git a/sql/updates/world/3.3.5/2020_09_19_00_world.sql b/sql/updates/world/3.3.5/2020_09_19_00_world.sql new file mode 100644 index 00000000000..30aadb03701 --- /dev/null +++ b/sql/updates/world/3.3.5/2020_09_19_00_world.sql @@ -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`; -- cgit v1.2.3