Change MonitorIds from TinyText to TEXT. Fixes #2569
This commit is contained in:
parent
f719dd9acc
commit
d776f63bd8
|
@ -639,7 +639,7 @@ CREATE TABLE `Users` (
|
|||
`Devices` enum('None','View','Edit') NOT NULL default 'None',
|
||||
`System` enum('None','View','Edit') NOT NULL default 'None',
|
||||
`MaxBandwidth` varchar(16),
|
||||
`MonitorIds` tinytext,
|
||||
`MonitorIds` text,
|
||||
PRIMARY KEY (`Id`),
|
||||
UNIQUE KEY `UC_Username` (`Username`)
|
||||
) ENGINE=@ZM_MYSQL_ENGINE@;
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
ALTER TABLE Users MODIFY MonitorIds text;
|
Loading…
Reference in New Issue