Add a primary key.

This commit is contained in:
Andrew McMillan 2010-03-06 23:32:59 +13:00
parent c37df9a88e
commit f4416f84e9
2 changed files with 4 additions and 2 deletions

View File

@ -394,7 +394,8 @@ CREATE TABLE calendar_attendee (
attendee TEXT,
role TEXT,
rsvp BOOLEAN,
property TEXT -- The full text of the property
property TEXT, -- The full text of the property
PRIMARY KEY ( dav_id, attendee )
);
SELECT new_db_revision(1,2,8, 'Août' );

View File

@ -99,7 +99,8 @@ CREATE TABLE calendar_attendee (
attendee TEXT,
role TEXT,
rsvp BOOLEAN,
property TEXT -- The full text of the property
property TEXT, -- The full text of the property
PRIMARY KEY ( dav_id, attendee )
);
SELECT new_db_revision(1,2,8, 'Août' );