-
Notifications
You must be signed in to change notification settings - Fork 347
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '3.1' of github.com:fruux/sabre-dav into 3.1
- Loading branch information
Showing
9 changed files
with
53 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,28 @@ | ||
CREATE TABLE addressbooks ( | ||
id integer primary key asc, | ||
principaluri text, | ||
id integer primary key asc NOT NULL, | ||
principaluri text NOT NULL, | ||
displayname text, | ||
uri text, | ||
uri text NOT NULL, | ||
description text, | ||
synctoken integer | ||
synctoken integer DEFAULT 1 NOT NULL | ||
); | ||
|
||
CREATE TABLE cards ( | ||
id integer primary key asc, | ||
addressbookid integer, | ||
id integer primary key asc NOT NULL, | ||
addressbookid integer NOT NULL, | ||
carddata blob, | ||
uri text, | ||
uri text NOT NULL, | ||
lastmodified integer, | ||
etag text, | ||
size integer | ||
); | ||
|
||
CREATE TABLE addressbookchanges ( | ||
id integer primary key asc, | ||
id integer primary key asc NOT NULL, | ||
uri text, | ||
synctoken integer, | ||
addressbookid integer, | ||
operation integer | ||
synctoken integer NOT NULL, | ||
addressbookid integer NOT NULL, | ||
operation integer NOT NULL | ||
); | ||
|
||
CREATE INDEX addressbookid_synctoken ON addressbookchanges (addressbookid, synctoken); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters