1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 11:50:30 +02:00

Cron data moved to SQL table.

This commit is contained in:
CaMer0n
2011-05-06 07:00:21 +00:00
parent 53f0d0d9a9
commit 0c3c292a1c
9 changed files with 611 additions and 11 deletions

View File

@@ -153,6 +153,18 @@ CREATE TABLE core_media_cat (
) ENGINE=MyISAM;
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 ,
PRIMARY KEY (cron_id),
UNIQUE KEY cron_function (cron_function)
) ENGINE = MYISAM ;