add an update script to add StateId to Events table

This commit is contained in:
Isaac Connor 2017-01-14 16:58:22 -05:00
parent 242e5a56d8
commit 8d02607a90
1 changed files with 20 additions and 0 deletions

20
db/zm_update-1.30.2.sql Normal file
View File

@ -0,0 +1,20 @@
--
-- This updates a 1.30.1 database to 1.30.2
--
-- Add StateId Column to Events.
--
SET @s = (SELECT IF(
(SELECT COUNT(*)
FROM INFORMATION_SCHEMA.COLUMNS
WHERE table_name = 'Events'
AND table_schema = DATABASE()
AND column_name = 'StateId'
) > 0,
"SELECT 'Column StateId exists in Events'",
"ALTER TABLE Events ADD `StateId` int(10) unsigned default NULL AFTER `Notes`"
));
PREPARE stmt FROM @s;
EXECUTE stmt;