Added isRunning column

This commit is contained in:
Pliable Pixels 2015-06-21 09:30:14 -04:00
parent 719a903d43
commit d2472f177d
1 changed files with 2 additions and 0 deletions

View File

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