From 833ae0ee8f33919ab550fe914ee4a53b475dd7cf Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Mon, 11 Dec 2017 15:09:41 -0500 Subject: [PATCH] alter the type of the Channel field to match the update that occurred in 1.23.3 --- db/zm_create.sql.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/zm_create.sql.in b/db/zm_create.sql.in index 157c55a06..826d775a6 100644 --- a/db/zm_create.sql.in +++ b/db/zm_create.sql.in @@ -291,7 +291,7 @@ CREATE TABLE `MonitorPresets` ( `Name` varchar(64) NOT NULL default '', `Type` enum('Local','Remote','File','Ffmpeg','Libvlc','cURL') NOT NULL default 'Local', `Device` tinytext, - `Channel` tinytext, + `Channel` tinyint(3) unsigned default NULL, `Format` int(10) unsigned default NULL, `Protocol` varchar(16) default NULL, `Method` varchar(16) default NULL,