1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/updatedb/updateDb.v9.7.sql
DanielnetoDotCom 632fbe3acd https://github.com/WWBN/AVideo/pull/3840
cannot be bigint
2020-10-26 09:31:41 -03:00

12 lines
No EOL
416 B
SQL

-- Add Login control
-- Fix some layout issues
-- 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;
ALTER TABLE `configurations`
CHANGE COLUMN `contactEmail` VARCHAR(254) NOT NULL;
UPDATE configurations SET version = '9.7', modified = now() WHERE id = 1;