mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-09-01 18:48:17 +00:00
Add a weak_etag field to the calendar_attendee table.
This commit is contained in:
parent
e37bbd9030
commit
1fbf1be670
@ -389,6 +389,7 @@ CREATE TABLE calendar_attendee (
|
|||||||
rsvp BOOLEAN,
|
rsvp BOOLEAN,
|
||||||
property TEXT, -- The full text of the property
|
property TEXT, -- The full text of the property
|
||||||
attendee_state TEXT, -- Internal DAViCal processing state
|
attendee_state TEXT, -- Internal DAViCal processing state
|
||||||
|
weak_etag TEXT, -- The week_etag applying for this attendee state
|
||||||
PRIMARY KEY ( dav_id, attendee )
|
PRIMARY KEY ( dav_id, attendee )
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -31,6 +31,7 @@ ALTER TABLE calendar_alarm ADD COLUMN trigger_state CHAR DEFAULT 'N';
|
|||||||
|
|
||||||
-- Internal DAViCal calendar state
|
-- Internal DAViCal calendar state
|
||||||
ALTER TABLE calendar_attendee ADD COLUMN attendee_state TEXT;
|
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' );
|
SELECT new_db_revision(1,2,9, 'Septembre' );
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user