Remove the freebusy_set from the collection.

This commit is contained in:
Andrew McMillan 2010-03-20 00:31:06 +13:00
parent 00cce278ef
commit 5311d3a68a
2 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,6 @@ CREATE TABLE collection (
default_privileges BIT(24),
is_addressbook BOOLEAN DEFAULT FALSE,
resourcetypes TEXT DEFAULT '<DAV::collection/>',
in_freebusy_set BOOLEAN DEFAULT TRUE,
schedule_transp TEXT DEFAULT 'opaque',
timezone TEXT REFERENCES time_zone(tz_id) ON DELETE SET NULL ON UPDATE CASCADE,
description TEXT DEFAULT '',

View File

@ -8,6 +8,7 @@ BEGIN;
SELECT check_db_revision(1,2,7);
ALTER TABLE caldav_data ADD COLUMN weak_etag TEXT DEFAULT NULL;
ALTER TABLE collection DROP COLUMN in_freebusy_set;
CREATE TABLE access_ticket (
ticket_id TEXT PRIMARY KEY,