From d2472f177d64e76123fc903c0b438afad66ac6af Mon Sep 17 00:00:00 2001 From: Pliable Pixels Date: Sun, 21 Jun 2015 09:30:14 -0400 Subject: [PATCH] Added isRunning column --- db/zm_create.sql.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/db/zm_create.sql.in b/db/zm_create.sql.in index c7d51641c..63d423731 100644 --- a/db/zm_create.sql.in +++ b/db/zm_create.sql.in @@ -382,12 +382,14 @@ CREATE TABLE `Monitors` ( -- -- Table structure for table `States` +-- Added IsActive to track custom run states -- DROP TABLE IF EXISTS `States`; CREATE TABLE `States` ( `Name` varchar(64) NOT NULL default '', `Definition` text NOT NULL, + `IsActive` tinyint(3) unsigned NOT NULL default '0', PRIMARY KEY (`Name`) ) ENGINE=@ZM_MYSQL_ENGINE@;