Add a db update to alter Frames.Id to a bigint

This commit is contained in:
Isaac Connor 2020-05-05 18:04:24 -04:00
parent 85eb525e8f
commit 30adcb7cf5
1 changed files with 2 additions and 0 deletions

2
db/zm_update-1.35.3.sql Normal file
View File

@ -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;