aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/sabre/dav/examples/sql/sqlite.addressbooks.sql
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/sabre/dav/examples/sql/sqlite.addressbooks.sql')
-rw-r--r--vendor/sabre/dav/examples/sql/sqlite.addressbooks.sql17
1 files changed, 0 insertions, 17 deletions
diff --git a/vendor/sabre/dav/examples/sql/sqlite.addressbooks.sql b/vendor/sabre/dav/examples/sql/sqlite.addressbooks.sql
deleted file mode 100644
index aa7639c5f..000000000
--- a/vendor/sabre/dav/examples/sql/sqlite.addressbooks.sql
+++ /dev/null
@@ -1,17 +0,0 @@
-CREATE TABLE addressbooks (
- id integer primary key asc,
- principaluri text,
- displayname text,
- uri text,
- description text,
- ctag integer
-);
-
-CREATE TABLE cards (
- id integer primary key asc,
- addressbookid integer,
- carddata blob,
- uri text,
- lastmodified integer
-);
-