1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-04 10:19:24 +02:00
Oinktube/plugin/Scheduler/install/updateV5.0.sql
2023-07-17 13:52:48 -03:00

9 lines
No EOL
407 B
SQL

ALTER TABLE `scheduler_commands`
ADD COLUMN `created_php_time` INT(11) NULL,
ADD COLUMN `time_to_execute` INT(11) NULL,
ADD INDEX `scheduler_commands_created_php_time` (`created_php_time` ASC),
ADD INDEX `scheduler_commands_time_to_execute` (`time_to_execute` ASC);
ALTER TABLE `email_to_user`
ADD COLUMN `created_php_time` INT(11) NULL,
ADD INDEX `email_to_user_created_php_time` (`created_php_time` ASC);