mirror of
https://github.com/e107inc/e107.git
synced 2025-07-31 11:50:30 +02:00
Fixed db-verify issue with cron table syntax.
This commit is contained in:
@@ -154,21 +154,18 @@ CREATE TABLE core_media_cat (
|
||||
|
||||
|
||||
CREATE TABLE cron (
|
||||
cron_id INT( 10 ) UNSIGNED NOT NULL AUTO_INCREMENT ,
|
||||
cron_name VARCHAR( 50 ) NOT NULL ,
|
||||
cron_description VARCHAR( 255 ) NOT NULL ,
|
||||
cron_function VARCHAR( 50 ) NOT NULL ,
|
||||
cron_tab VARCHAR( 255 ) NOT NULL ,
|
||||
cron_lastrun INT( 13 ) UNSIGNED NOT NULL ,
|
||||
cron_active INT( 1 ) UNSIGNED NOT NULL ,
|
||||
cron_id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||
cron_name VARCHAR(50) NOT NULL,
|
||||
cron_description VARCHAR(255) NOT NULL,
|
||||
cron_function VARCHAR(50) NOT NULL,
|
||||
cron_tab VARCHAR(255) NOT NULL,
|
||||
cron_lastrun INT(13) UNSIGNED NOT NULL,
|
||||
cron_active INT(1) UNSIGNED NOT NULL,
|
||||
PRIMARY KEY (cron_id),
|
||||
UNIQUE KEY cron_function (cron_function)
|
||||
) ENGINE = MYISAM ;
|
||||
) ENGINE = MYISAM;
|
||||
|
||||
|
||||
|
||||
|
||||
#
|
||||
# Table structure for table `dblog` - db/debug/rolling
|
||||
#
|
||||
|
||||
|
Reference in New Issue
Block a user