Skip to content

Commit 870581b

Browse files
author
mcramer
committed
- Added missing incremental sql file to repository
1 parent 5de2af2 commit 870581b

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
CREATE TABLE IF NOT EXISTS `sys_cron` (
2+
`name` varchar(50) NOT NULL,
3+
`last_run` datetime NULL DEFAULT NULL,
4+
`next_run` datetime NULL DEFAULT NULL,
5+
`running` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
6+
PRIMARY KEY (`name`)
7+
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

0 commit comments

Comments
 (0)