add site_dead flag to prevent delivery to dead sites. Allow sys channel webpages to be viewed even if site is configured "block public".
This commit is contained in:
@@ -969,6 +969,7 @@ CREATE TABLE "site" (
|
||||
"site_location" text NOT NULL DEFAULT '',
|
||||
"site_realm" text NOT NULL DEFAULT '',
|
||||
"site_valid" smallint NOT NULL DEFAULT '0',
|
||||
"site_dead" smallint NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY ("site_url")
|
||||
);
|
||||
create index "site_flags" on site ("site_flags");
|
||||
@@ -979,6 +980,7 @@ create index "site_access" on site ("site_access");
|
||||
create index "site_sellpage" on site ("site_sellpage");
|
||||
create index "site_realm" on site ("site_realm");
|
||||
create index "site_valid" on site ("site_valid");
|
||||
create index "site_dead" on site ("site_dead");
|
||||
|
||||
CREATE TABLE "source" (
|
||||
"src_id" serial NOT NULL,
|
||||
|
Reference in New Issue
Block a user