1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
cannot be bigint
This commit is contained in:
DanielnetoDotCom 2020-10-26 11:35:17 -03:00
parent 632fbe3acd
commit f613a83434

View file

@ -3,10 +3,10 @@
-- support for encoder 3.3 and dynamic resolutions for MP4 and webm
ALTER TABLE `users`
CHANGE COLUMN `email` VARCHAR(254) NULL,
CHANGE COLUMN `created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP;
CHANGE COLUMN `email` `email` VARCHAR(254) NULL,
CHANGE COLUMN `created` `created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP;
ALTER TABLE `configurations`
CHANGE COLUMN `contactEmail` VARCHAR(254) NOT NULL;
CHANGE COLUMN `contactEmail` `contactEmail` VARCHAR(254) NOT NULL;
UPDATE configurations SET version = '9.7', modified = now() WHERE id = 1;