add a db update script to update the Messages column to a TEXT type.

This commit is contained in:
Isaac Connor 2016-12-12 21:55:32 -05:00
parent e72a76fe33
commit e058217a4b
1 changed files with 7 additions and 0 deletions

7
db/zm_update-1.30.1.sql Normal file
View File

@ -0,0 +1,7 @@
--
-- This updates a 1.30.0 database to 1.30.1
--
-- Alter type of Messages column from VARCHAR(255) to TEXT
--
ALTER TABLE Logs MODIFY Message TEXT;