mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 17:59:55 +02:00
12 lines
No EOL
408 B
SQL
12 lines
No EOL
408 B
SQL
CREATE TABLE IF NOT EXISTS `ai_scheduler` (
|
|
`id` INT NOT NULL AUTO_INCREMENT,
|
|
`json` MEDIUMTEXT NOT NULL,
|
|
`status` CHAR(1) NOT NULL DEFAULT 'a',
|
|
`ai_scheduler_type` VARCHAR(45) NOT NULL,
|
|
`created` DATETIME NULL,
|
|
`modified` DATETIME NULL,
|
|
`created_php_time` BIGINT NULL,
|
|
`modified_php_time` BIGINT NULL,
|
|
PRIMARY KEY (`id`),
|
|
INDEX `status_ai_schedler_index` (`status` ASC))
|
|
ENGINE = InnoDB; |