diff --git a/mysql/create_tables b/mysql/create_tables index c187420..3c38705 100644 --- a/mysql/create_tables +++ b/mysql/create_tables @@ -1,4 +1,8 @@ +ALTER TABLE mxq_job + ADD COLUMN job_id_new INT8 UNSIGNED NULL DEFAULT NULL + AFTER date_end; + ALTER TABLE mxq_job ADD COLUMN job_flags INT8 UNSIGNED NOT NULL DEFAULT 0 AFTER job_status; @@ -82,6 +86,8 @@ CREATE TABLE IF NOT EXISTS mxq_job ( date_start TIMESTAMP NOT NULL DEFAULT 0, date_end TIMESTAMP NOT NULL DEFAULT 0, + job_id_new INT8 UNSIGNED NULL DEFAULT NULL, + stats_status INT4 UNSIGNED NOT NULL DEFAULT 0, stats_utime_sec INT4 UNSIGNED NOT NULL DEFAULT 0,