mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2025-12-23 22:37:53 -05:00
git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@1705 e3e1d417-86f3-4887-817a-d78f3d33393f
10 lines
550 B
SQL
10 lines
550 B
SQL
--
|
|
-- This updates a 0.9.7 database to 0.9.8
|
|
--
|
|
alter table Filters modify column AutoDelete tinyint unsigned not null default 0;
|
|
alter table Filters modify column AutoUpload tinyint unsigned not null default 0;
|
|
alter table Filters add column AutoEmail tinyint unsigned not null default 0;
|
|
alter table Filters add column AutoMessage tinyint unsigned not null default 0;
|
|
alter table Events add column Emailed tinyint unsigned not null default 0 after Uploaded;
|
|
alter table Events add column Messaged tinyint unsigned not null default 0 after Emailed;
|