aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_postgres.sql
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2018-09-17 10:31:13 +0200
committerMario Vavti <mario@mariovavti.com>2018-09-17 10:31:13 +0200
commitdcacfc1124457c9d86bf0fa876829abb4701fbff (patch)
tree7d234920470ba97b58eaeaf2dadffe4a0217c06a /install/schema_postgres.sql
parent2f6cb764a4670f848123153e44d6aa58d6ab01b7 (diff)
parent593a5072d9b738ea036167f15776f90e829a1e64 (diff)
downloadvolse-hubzilla-dcacfc1124457c9d86bf0fa876829abb4701fbff.tar.gz
volse-hubzilla-dcacfc1124457c9d86bf0fa876829abb4701fbff.tar.bz2
volse-hubzilla-dcacfc1124457c9d86bf0fa876829abb4701fbff.zip
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'install/schema_postgres.sql')
-rw-r--r--install/schema_postgres.sql11
1 files changed, 11 insertions, 0 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql
index 68c65c830..7f118646e 100644
--- a/install/schema_postgres.sql
+++ b/install/schema_postgres.sql
@@ -718,6 +718,17 @@ create index "likes_i_mid" on likes ("i_mid");
create index "likes_verb" on likes ("verb");
create index "likes_target_type" on likes ("target_type");
create index "likes_target_id" on likes ("target_id");
+CREATE TABLE listeners (
+ id serial NOT NULL,
+ target_id text NOT NULL,
+ portable_id text NOT NULL,
+ ltype smallint NOT NULL DEFAULT '0',
+ PRIMARY KEY (id)
+);
+create index "target_id_idx" on listeners ("target_id");
+create index "portable_id_idx" on listeners ("portable_id");
+create index "ltype_idx" on listeners ("ltype");
+
CREATE TABLE "mail" (
"id" serial NOT NULL,
"convid" bigint NOT NULL DEFAULT '0',