aboutsummaryrefslogtreecommitdiffstats
path: root/install/schema_postgres.sql
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-05-01 21:00:02 -0700
committerredmatrix <git@macgirvin.com>2016-05-01 21:00:02 -0700
commitbd2f11ed8b0be4fb611c33e85b568048f79b7090 (patch)
treeb0bb7e430d6c0a21b5601368b825f6cefc4f181c /install/schema_postgres.sql
parent5e458491f1e0fce5ec9e4855dac13340af627ded (diff)
downloadvolse-hubzilla-bd2f11ed8b0be4fb611c33e85b568048f79b7090.tar.gz
volse-hubzilla-bd2f11ed8b0be4fb611c33e85b568048f79b7090.tar.bz2
volse-hubzilla-bd2f11ed8b0be4fb611c33e85b568048f79b7090.zip
db schema change to add tags to content sources
Diffstat (limited to 'install/schema_postgres.sql')
-rw-r--r--install/schema_postgres.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/install/schema_postgres.sql b/install/schema_postgres.sql
index d4bb54b1e..2c0847cbf 100644
--- a/install/schema_postgres.sql
+++ b/install/schema_postgres.sql
@@ -1166,7 +1166,8 @@ CREATE TABLE "source" (
"src_channel_id" bigint NOT NULL DEFAULT '0',
"src_channel_xchan" text NOT NULL DEFAULT '',
"src_xchan" text NOT NULL DEFAULT '',
- "src_patt" text NOT NULL,
+ "src_patt" text NOT NULL DEFAULT '',
+ "src_tag" text NOT NULL DEFAULT '',
PRIMARY KEY ("src_id")
);
create index "src_channel_id" on "source" ("src_channel_id");