aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_postgres.sql
diff options
context:
space:
mode:
authorHaakon Meland Eriksen <haakon.eriksen@far.no>2016-02-25 06:05:12 +0100
committerHaakon Meland Eriksen <haakon.eriksen@far.no>2016-02-25 06:05:12 +0100
commit21f2df399d3e21b6322ece16717efe88bcc21621 (patch)
tree1f6bcf44e803c1ef723b546eb4fcd83dc5f82e87 /install/schema_postgres.sql
parentddeab48f9b314eed067c31086945acee33964d37 (diff)
parent43521bb10b71752b5b3fd953056966ba30df50b6 (diff)
downloadvolse-hubzilla-21f2df399d3e21b6322ece16717efe88bcc21621.tar.gz
volse-hubzilla-21f2df399d3e21b6322ece16717efe88bcc21621.tar.bz2
volse-hubzilla-21f2df399d3e21b6322ece16717efe88bcc21621.zip
Merge remote-tracking branch 'upstream/master'
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 964ca5966..3302ef6c0 100644
--- a/install/schema_postgres.sql
+++ b/install/schema_postgres.sql
@@ -225,6 +225,7 @@ CREATE TABLE "channel" (
"channel_w_like" bigint NOT NULL DEFAULT '128',
"channel_removed" smallint NOT NULL DEFAULT '0',
"channel_system" smallint NOT NULL DEFAULT '0',
+ "channel_moved" text NOT NULL DEFAULT '',
PRIMARY KEY ("channel_id"),
UNIQUE ("channel_address")
);
@@ -265,6 +266,7 @@ create index "channel_dirdate" on channel ("channel_dirdate");
create index "channel_lastpost" on channel ("channel_lastpost");
create index "channel_removed" on channel ("channel_removed");
create index "channel_system" on channel ("channel_system");
+create index "channel_moved" on channel ("channel_moved");
CREATE TABLE "chat" (
"chat_id" serial NOT NULL,
"chat_room" bigint NOT NULL DEFAULT '0',