· 8 years ago · Dec 24, 2017, 07:24 PM
1DROP TABLE IF EXISTS `site_cron`;
2CREATE TABLE `site_cron` (
3 `id` int(11) NOT NULL AUTO_INCREMENT,
4 `prio` int(11) NOT NULL DEFAULT '5',
5 `enabled` enum('0','1') NOT NULL DEFAULT '1',
6 `scriptfile` varchar(50) NOT NULL,
7 `last_exec` int(11) NOT NULL,
8 `exec_every` int(11) NOT NULL,
9 PRIMARY KEY (`id`)
10) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=latin1;
11
12-- ----------------------------
13-- Records of site_cron
14-- ----------------------------