Fixed up inconsistencies in db.
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@2078 e3e1d417-86f3-4887-817a-d78f3d33393f
This commit is contained in:
parent
ecaf3ac879
commit
e180ded0e2
|
@ -66,7 +66,6 @@ CREATE TABLE `Controls` (
|
||||||
`Name` varchar(64) NOT NULL default '',
|
`Name` varchar(64) NOT NULL default '',
|
||||||
`Type` enum('Local','Remote') NOT NULL default 'Local',
|
`Type` enum('Local','Remote') NOT NULL default 'Local',
|
||||||
`Command` varchar(255) default NULL,
|
`Command` varchar(255) default NULL,
|
||||||
`Protocol` varchar(32) default NULL,
|
|
||||||
`CanWake` tinyint(3) unsigned NOT NULL default '0',
|
`CanWake` tinyint(3) unsigned NOT NULL default '0',
|
||||||
`CanSleep` tinyint(3) unsigned NOT NULL default '0',
|
`CanSleep` tinyint(3) unsigned NOT NULL default '0',
|
||||||
`CanReset` tinyint(3) unsigned NOT NULL default '0',
|
`CanReset` tinyint(3) unsigned NOT NULL default '0',
|
||||||
|
@ -506,12 +505,12 @@ CREATE TABLE `Zones` (
|
||||||
--
|
--
|
||||||
-- Create a default admin user.
|
-- Create a default admin user.
|
||||||
--
|
--
|
||||||
insert into Users values ('','admin',password('admin'),'',1,'View','Edit','Edit','Edit','Edit','','');
|
insert into Users values ('','admin',password('admin'),'',1,'View','Edit','Edit','Edit','Edit','Edit','','');
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Add a sample filter to purge the oldest 5 events when the disk is 95% full, delete is disabled though
|
-- Add a sample filter to purge the oldest 5 events when the disk is 95% full, delete is disabled though
|
||||||
--
|
--
|
||||||
insert into Filters values ('PurgeWhenFull','trms=2&obr1=&cbr1=&attr1=Archived&op1==&val1=0&cnj2=and&obr2=&cbr2=&attr2=DiskPercent&op2=>=&val2=95&sort_field=Id&sort_asc=1&limit=5',0,0,0,0,0,0,'',0);
|
insert into Filters values ('PurgeWhenFull','trms=2&obr1=&cbr1=&attr1=Archived&op1==&val1=0&cnj2=and&obr2=&cbr2=&attr2=DiskPercent&op2=>=&val2=95&sort_field=Id&sort_asc=1&limit=5',0,0,0,0,0,0,'',0,0);
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Add in some sample control protocol definitions
|
-- Add in some sample control protocol definitions
|
||||||
|
|
|
@ -5,12 +5,12 @@
|
||||||
--
|
--
|
||||||
-- Create a default admin user.
|
-- Create a default admin user.
|
||||||
--
|
--
|
||||||
insert into Users values ('','admin',password('admin'),'',1,'View','Edit','Edit','Edit','Edit','','');
|
insert into Users values ('','admin',password('admin'),'',1,'View','Edit','Edit','Edit','Edit','Edit','','');
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Add a sample filter to purge the oldest 5 events when the disk is 95% full, delete is disabled though
|
-- Add a sample filter to purge the oldest 5 events when the disk is 95% full, delete is disabled though
|
||||||
--
|
--
|
||||||
insert into Filters values ('PurgeWhenFull','trms=2&obr1=&cbr1=&attr1=Archived&op1==&val1=0&cnj2=and&obr2=&cbr2=&attr2=DiskPercent&op2=>=&val2=95&sort_field=Id&sort_asc=1&limit=5',0,0,0,0,0,0,'',0);
|
insert into Filters values ('PurgeWhenFull','trms=2&obr1=&cbr1=&attr1=Archived&op1==&val1=0&cnj2=and&obr2=&cbr2=&attr2=DiskPercent&op2=>=&val2=95&sort_field=Id&sort_asc=1&limit=5',0,0,0,0,0,0,'',0,0);
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Add in some sample control protocol definitions
|
-- Add in some sample control protocol definitions
|
||||||
|
|
|
@ -25,6 +25,11 @@ alter table Monitors modify LabelFormat varchar(64) NOT NULL default '%%s - %y/%
|
||||||
alter table Users add column Devices enum('None','View','Edit') NOT NULL default 'None' after Monitors;
|
alter table Users add column Devices enum('None','View','Edit') NOT NULL default 'None' after Monitors;
|
||||||
update Users set Devices = Monitors;
|
update Users set Devices = Monitors;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Increase size of Notes field in Events
|
||||||
|
--
|
||||||
|
alter table Events modify column Notes text;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Create new preset labels table
|
-- Create new preset labels table
|
||||||
--
|
--
|
||||||
|
|
Loading…
Reference in New Issue