Files
FHC-Core/include/sabredav/examples/sql/sqlite.calendars.sql
T
2012-03-12 14:36:53 +00:00

21 lines
396 B
SQL

CREATE TABLE calendarobjects (
id integer primary key asc,
calendardata blob,
uri text,
calendarid integer,
lastmodified integer
);
CREATE TABLE calendars (
id integer primary key asc,
principaluri text,
displayname text,
uri text,
ctag integer,
description text,
calendarorder integer,
calendarcolor text,
timezone text,
components text
);