db schema change to add tags to content sources

This commit is contained in:
redmatrix
2016-05-01 21:00:02 -07:00
parent 5e458491f1
commit bd2f11ed8b
4 changed files with 14 additions and 3 deletions

View File

@@ -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");