aboutsummaryrefslogtreecommitdiff
path: root/sql
diff options
context:
space:
mode:
authorGiacomo Pozzoni <giacomopoz@gmail.com>2020-09-19 23:33:29 +0200
committerGitHub <noreply@github.com>2020-09-19 23:33:29 +0200
commit4b7d19c91bde2cabb8498809dee935c7efb2660a (patch)
tree93735c48109282a77a2daf85e4b100e851c7bbbd /sql
parent7dd51ae6d98cf6dd8ac71412aa689f888c7bf369 (diff)
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
Diffstat (limited to 'sql')
-rw-r--r--sql/updates/world/3.3.5/2020_09_19_00_world.sql2
1 files changed, 2 insertions, 0 deletions
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`;