2003-01-13 19:43:59 +08:00
|
|
|
--
|
2003-01-15 18:04:53 +08:00
|
|
|
-- This updates a 0.9.7 database to 0.9.8
|
2003-01-13 19:43:59 +08:00
|
|
|
--
|
2003-01-15 18:04:53 +08:00
|
|
|
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;
|