alter the type of Device in the Monitors table to tinytext, which matches the MonitorPresets table, and increases the length to 255
This commit is contained in:
parent
48f4d7eb93
commit
ed61d2b925
|
@ -320,7 +320,7 @@ CREATE TABLE `Monitors` (
|
||||||
`Enabled` tinyint(3) unsigned NOT NULL default '1',
|
`Enabled` tinyint(3) unsigned NOT NULL default '1',
|
||||||
`LinkedMonitors` varchar(255) NOT NULL default '',
|
`LinkedMonitors` varchar(255) NOT NULL default '',
|
||||||
`Triggers` set('X10') NOT NULL default '',
|
`Triggers` set('X10') NOT NULL default '',
|
||||||
`Device` varchar(64) NOT NULL default '',
|
`Device` tinytext NOT NULL default '',
|
||||||
`Channel` tinyint(3) unsigned NOT NULL default '0',
|
`Channel` tinyint(3) unsigned NOT NULL default '0',
|
||||||
`Format` int(10) unsigned NOT NULL default '0',
|
`Format` int(10) unsigned NOT NULL default '0',
|
||||||
`V4LMultiBuffer` tinyint(1) unsigned,
|
`V4LMultiBuffer` tinyint(1) unsigned,
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
ALTER TABLE Monitors MODIFY Device tinytext;
|
Loading…
Reference in New Issue