Merge ../ZoneMinder.connortechnology into storageareas

This commit is contained in:
Isaac Connor 2016-10-12 16:17:51 -04:00
commit b731cd1a4c
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ SET @s = (SELECT IF(
AND column_name = 'Orientation' AND column_name = 'Orientation'
) > 0, ) > 0,
"SELECT 'Column Orientation exists in Events'", "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; PREPARE stmt FROM @s;