Added missing control changes.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1576 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
bcfc0457a1
commit
de45bf87bb
|
@ -11,6 +11,8 @@ alter table Monitors add column DefaultScale smallint unsigned after ReturnDelay
|
|||
alter table Monitors modify column Type enum('Local','Remote','File') NOT NULL default 'Local';
|
||||
alter table Events add column Height smallint(5) unsigned not null default '0' after EndTime;
|
||||
alter table Events add column Width smallint(5) unsigned not null default '0' after EndTime;
|
||||
alter table Users add column Control enum('None','View','Edit') NOT NULL default 'None' after Events;
|
||||
update Users set Control = System;
|
||||
alter table Users add column MaxBandwidth varchar(16) not null default '' after System;
|
||||
--
|
||||
-- These are optional, but we might as well do it now
|
||||
|
|
Loading…
Reference in New Issue