1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-05 02:39:46 +02:00
Oinktube/plugin/Scheduler/install/install.sql

19 lines
No EOL
677 B
SQL

CREATE TABLE IF NOT EXISTS `scheduler_commands` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`callbackURL` VARCHAR(255) NOT NULL,
`parameters` TEXT NULL DEFAULT NULL,
`created` DATETIME NULL DEFAULT NULL,
`modified` DATETIME NULL DEFAULT NULL,
`date_to_execute` DATETIME NULL,
`executed_in` DATETIME NULL DEFAULT NULL,
`status` CHAR(1) NOT NULL DEFAULT 'a',
`callbackResponse` TEXT NULL DEFAULT NULL,
`timezone` VARCHAR(255) NULL,
`repeat_minute` INT NULL,
`repeat_hour` INT NULL,
`repeat_day_of_month` INT NULL,
`repeat_month` INT NULL,
`repeat_day_of_week` INT NULL,
`type` VARCHAR(45) NULL,
PRIMARY KEY (`id`))
ENGINE = InnoDB;