From 30adcb7cf55b60ff1f626824e51c887e23e9b63c Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Tue, 5 May 2020 18:04:24 -0400 Subject: [PATCH] Add a db update to alter Frames.Id to a bigint --- db/zm_update-1.35.3.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 db/zm_update-1.35.3.sql diff --git a/db/zm_update-1.35.3.sql b/db/zm_update-1.35.3.sql new file mode 100644 index 000000000..23f24dd3d --- /dev/null +++ b/db/zm_update-1.35.3.sql @@ -0,0 +1,2 @@ +SELECT 'ALTERING Frames.Id to a BIGINT. This could take a long time.'; +ALTER TABLE Frames MODIFY Id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT;