From e058217a4b2543b5608a03dc2ffffb9cb1706d93 Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 12 Dec 2016 21:55:32 -0500 Subject: [PATCH] add a db update script to update the Messages column to a TEXT type. --- db/zm_update-1.30.1.sql | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 db/zm_update-1.30.1.sql diff --git a/db/zm_update-1.30.1.sql b/db/zm_update-1.30.1.sql new file mode 100644 index 000000000..f3d5698d3 --- /dev/null +++ b/db/zm_update-1.30.1.sql @@ -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;