aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/examples/sql/sqlite.principals.sql
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2016-05-29 10:58:11 +0200
committerMario Vavti <mario@mariovavti.com>2016-05-29 10:58:11 +0200
commitcac6cef4952e6535788c1c6db8ef1e58e88536a0 (patch)
tree574d653201c280cb082877f80d814b6899aacaf9 /vendor/examples/sql/sqlite.principals.sql
parentaab9766c53e42c3141d0497fce78977d262efbc1 (diff)
downloadvolse-hubzilla-cac6cef4952e6535788c1c6db8ef1e58e88536a0.tar.gz
volse-hubzilla-cac6cef4952e6535788c1c6db8ef1e58e88536a0.tar.bz2
volse-hubzilla-cac6cef4952e6535788c1c6db8ef1e58e88536a0.zip
use composer to install sabre32
Diffstat (limited to 'vendor/examples/sql/sqlite.principals.sql')
-rw-r--r--vendor/examples/sql/sqlite.principals.sql20
1 files changed, 0 insertions, 20 deletions
diff --git a/vendor/examples/sql/sqlite.principals.sql b/vendor/examples/sql/sqlite.principals.sql
deleted file mode 100644
index 4105156f8..000000000
--- a/vendor/examples/sql/sqlite.principals.sql
+++ /dev/null
@@ -1,20 +0,0 @@
-CREATE TABLE principals (
- id INTEGER PRIMARY KEY ASC NOT NULL,
- uri TEXT NOT NULL,
- email TEXT,
- displayname TEXT,
- UNIQUE(uri)
-);
-
-CREATE TABLE groupmembers (
- id INTEGER PRIMARY KEY ASC NOT NULL,
- principal_id INTEGER NOT NULL,
- member_id INTEGER NOT NULL,
- UNIQUE(principal_id, member_id)
-);
-
-
-INSERT INTO principals (uri,email,displayname) VALUES ('principals/admin', 'admin@example.org','Administrator');
-INSERT INTO principals (uri,email,displayname) VALUES ('principals/admin/calendar-proxy-read', null, null);
-INSERT INTO principals (uri,email,displayname) VALUES ('principals/admin/calendar-proxy-write', null, null);
-