From 5a842f34cf0b3ff5fcefef66421dcc2b570dee35 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 12 Oct 2016 16:17:43 -0400 Subject: [PATCH] fix extra , --- db/zm_update-1.30.8.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/zm_update-1.30.8.sql b/db/zm_update-1.30.8.sql index 5e5dd4ccd..5026939e5 100644 --- a/db/zm_update-1.30.8.sql +++ b/db/zm_update-1.30.8.sql @@ -10,7 +10,7 @@ SET @s = (SELECT IF( AND column_name = 'Orientation' ) > 0, "SELECT 'Column Orientation exists in Events'", -"ALTER TABLE `Events` ADD `Orientation` enum('0','90','180','270','hori','vert') NOT NULL default '0' AFTER Notes", +"ALTER TABLE `Events` ADD `Orientation` enum('0','90','180','270','hori','vert') NOT NULL default '0' AFTER `Notes`" )); PREPARE stmt FROM @s;