Updated zm_create.sql.in:

Path field in Monitors table was 64, should be 255 like in MonitorPresets table. Modified length of Path field in Monitors table from 64 to 255.
SubPath field in Monitors table was 255, should be 64, like in MonitorPresets table. Modified length of SubPath field in Monitors table from 255 to 64.

git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3204 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
stagecoach 2010-11-24 00:17:11 +00:00
parent 635d8e1dad
commit a6cded083d
1 changed files with 2 additions and 2 deletions

View File

@ -310,8 +310,8 @@ CREATE TABLE `Monitors` (
`Method` varchar(16) NOT NULL default '',
`Host` varchar(64) NOT NULL default '',
`Port` varchar(8) NOT NULL default '',
`SubPath` varchar(255) NOT NULL default '',
`Path` varchar(64) NOT NULL default '',
`SubPath` varchar(64) NOT NULL default '',
`Path` varchar(255) NOT NULL default '',
`Width` smallint(5) unsigned NOT NULL default '0',
`Height` smallint(5) unsigned NOT NULL default '0',
`Palette` int(10) unsigned NOT NULL default '0',