aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_postgres.sql
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-02-18 00:20:08 -0800
committerredmatrix <git@macgirvin.com>2016-02-18 00:20:08 -0800
commit76bf892f9f52c0deee313a89929185e332877f85 (patch)
tree73708b0268833e5cad6c92347f433727e9416fc8 /install/schema_postgres.sql
parent879bc7192713b1411865058fad69b9ff5fdf860a (diff)
downloadvolse-hubzilla-76bf892f9f52c0deee313a89929185e332877f85.tar.gz
volse-hubzilla-76bf892f9f52c0deee313a89929185e332877f85.tar.bz2
volse-hubzilla-76bf892f9f52c0deee313a89929185e332877f85.zip
iconfig - add sharing variable
Diffstat (limited to 'install/schema_postgres.sql')
-rw-r--r--install/schema_postgres.sql2
1 files changed, 2 insertions, 0 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql
index 2d9bffdec..964ca5966 100644
--- a/install/schema_postgres.sql
+++ b/install/schema_postgres.sql
@@ -544,11 +544,13 @@ CREATE TABLE "iconfig" (
"cat" text NOT NULL DEFAULT '',
"k" text NOT NULL DEFAULT '',
"v" text NOT NULL DEFAULT '',
+ "sharing" int NOT NULL DEFAULT '0',
PRIMARY_KEY("id")
);
create index "iconfig_iid" on iconfig ("iid");
create index "iconfig_cat" on iconfig ("cat");
create index "iconfig_k" on iconfig ("k");
+create index "iconfig_sharing" on iconfig ("sharing");
CREATE TABLE "issue" (
"issue_id" serial NOT NULL,
"issue_created" timestamp NOT NULL DEFAULT '0001-01-01 00:00:00',