1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00
Oinktube/plugin/AI/install/updateV6.0.sql
2024-03-05 15:37:54 -03:00

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;