aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/examples/sql/pgsql.propertystorage.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/pgsql.propertystorage.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/pgsql.propertystorage.sql')
-rw-r--r--vendor/examples/sql/pgsql.propertystorage.sql13
1 files changed, 0 insertions, 13 deletions
diff --git a/vendor/examples/sql/pgsql.propertystorage.sql b/vendor/examples/sql/pgsql.propertystorage.sql
deleted file mode 100644
index d1463faae..000000000
--- a/vendor/examples/sql/pgsql.propertystorage.sql
+++ /dev/null
@@ -1,13 +0,0 @@
-CREATE TABLE propertystorage (
- id SERIAL NOT NULL,
- path VARCHAR(1024) NOT NULL,
- name VARCHAR(100) NOT NULL,
- valuetype INT,
- value BYTEA
-);
-
-ALTER TABLE ONLY propertystorage
- ADD CONSTRAINT propertystorage_pkey PRIMARY KEY (id);
-
-CREATE UNIQUE INDEX propertystorage_ukey
- ON propertystorage (path, name);