From: Magnus Hagander Date: Mon, 16 Jun 2025 10:44:06 +0000 (+0200) Subject: Add subscriber_access field to schema.sql X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=2326da76c3e94621eb9c0839ea7a8b8b0b456ebe;p=pgarchives.git Add subscriber_access field to schema.sql There is still a weird mix between what's in migrations and what's in schema.sql, but at least they should try to be mostly in sync. Author: Jelte Fennema-Nio --- diff --git a/loader/sql/schema.sql b/loader/sql/schema.sql index be735d9..4e9508e 100644 --- a/loader/sql/schema.sql +++ b/loader/sql/schema.sql @@ -54,6 +54,7 @@ CREATE TABLE lists( shortdesc text NOT NULL, description text NOT NULL, active boolean NOT NULL, + subscriber_access boolean NOT NULL, groupid int NOT NULL REFERENCES listgroups(groupid) );