mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-04 10:19:24 +02:00
9 lines
No EOL
407 B
SQL
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); |