Added isRunning column
This commit is contained in:
parent
719a903d43
commit
d2472f177d
|
@ -382,12 +382,14 @@ CREATE TABLE `Monitors` (
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `States`
|
-- Table structure for table `States`
|
||||||
|
-- Added IsActive to track custom run states
|
||||||
--
|
--
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `States`;
|
DROP TABLE IF EXISTS `States`;
|
||||||
CREATE TABLE `States` (
|
CREATE TABLE `States` (
|
||||||
`Name` varchar(64) NOT NULL default '',
|
`Name` varchar(64) NOT NULL default '',
|
||||||
`Definition` text NOT NULL,
|
`Definition` text NOT NULL,
|
||||||
|
`IsActive` tinyint(3) unsigned NOT NULL default '0',
|
||||||
PRIMARY KEY (`Name`)
|
PRIMARY KEY (`Name`)
|
||||||
) ENGINE=@ZM_MYSQL_ENGINE@;
|
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue