From f613a834344f5dcbe2e222d220081026a3e49c2d Mon Sep 17 00:00:00 2001 From: DanielnetoDotCom Date: Mon, 26 Oct 2020 11:35:17 -0300 Subject: [PATCH] https://github.com/WWBN/AVideo/pull/3840 cannot be bigint --- updatedb/updateDb.v9.7.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/updatedb/updateDb.v9.7.sql b/updatedb/updateDb.v9.7.sql index 7984a68de4..b4439c7201 100644 --- a/updatedb/updateDb.v9.7.sql +++ b/updatedb/updateDb.v9.7.sql @@ -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; \ No newline at end of file