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@;