mirror of
https://github.com/ditatompel/xmr-remote-nodes.git
synced 2024-11-17 01:17:37 +00:00
Update db structure for tbl_cron
This commit is contained in:
parent
9aad56103a
commit
47c2dfb60b
1 changed files with 3 additions and 3 deletions
|
@ -29,10 +29,10 @@ CREATE TABLE `tbl_cron` (
|
|||
`id` int(8) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`title` varchar(200) NOT NULL DEFAULT '',
|
||||
`slug` varchar(200) NOT NULL DEFAULT '',
|
||||
`description` varchar(200) DEFAULT NULL,
|
||||
`description` varchar(200) NOT NULL DEFAULT '',
|
||||
`run_every` int(8) unsigned NOT NULL DEFAULT 60 COMMENT 'in seconds',
|
||||
`last_run` bigint(20) unsigned DEFAULT NULL,
|
||||
`next_run` bigint(20) unsigned DEFAULT NULL,
|
||||
`last_run` int(11) unsigned NOT NULL DEFAULT 0,
|
||||
`next_run` int(11) unsigned NOT NULL DEFAULT 0,
|
||||
`run_time` float(7,3) unsigned NOT NULL DEFAULT 0.000,
|
||||
`cron_state` tinyint(1) unsigned NOT NULL DEFAULT 0,
|
||||
`is_enabled` int(1) unsigned NOT NULL DEFAULT 1,
|
||||
|
|
Loading…
Reference in a new issue