Add a weak_etag field to the calendar_attendee table.

This commit is contained in:
Andrew McMillan 2010-05-30 11:31:14 +12:00
parent e37bbd9030
commit 1fbf1be670
2 changed files with 2 additions and 0 deletions

View File

@ -389,6 +389,7 @@ CREATE TABLE calendar_attendee (
rsvp BOOLEAN,
property TEXT, -- The full text of the property
attendee_state TEXT, -- Internal DAViCal processing state
weak_etag TEXT, -- The week_etag applying for this attendee state
PRIMARY KEY ( dav_id, attendee )
);

View File

@ -31,6 +31,7 @@ ALTER TABLE calendar_alarm ADD COLUMN trigger_state CHAR DEFAULT 'N';
-- Internal DAViCal calendar state
ALTER TABLE calendar_attendee ADD COLUMN attendee_state TEXT;
ALTER TABLE calendar_attendee ADD COLUMN weak_etag TEXT;
SELECT new_db_revision(1,2,9, 'Septembre' );