summaryrefslogtreecommitdiff
path: root/src/mailman/database/schema/postgres.sql
diff options
context:
space:
mode:
Diffstat (limited to 'src/mailman/database/schema/postgres.sql')
-rw-r--r--src/mailman/database/schema/postgres.sql9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mailman/database/schema/postgres.sql b/src/mailman/database/schema/postgres.sql
index 713d6d1a3..2e9ba249f 100644
--- a/src/mailman/database/schema/postgres.sql
+++ b/src/mailman/database/schema/postgres.sql
@@ -42,6 +42,7 @@ CREATE TABLE mailinglist (
bounce_you_are_disabled_warnings INTEGER,
bounce_you_are_disabled_warnings_interval TEXT,
-- Content filtering.
+ filter_action INTEGER,
filter_content BOOLEAN,
collapse_alternatives BOOLEAN,
convert_html_to_plaintext BOOLEAN,
@@ -83,13 +84,15 @@ CREATE TABLE mailinglist (
nondigestable BOOLEAN,
nonmember_rejection_notice TEXT,
obscure_addresses BOOLEAN,
+ owner_chain TEXT,
+ owner_pipeline TEXT,
personalize INTEGER,
post_id INTEGER,
posting_chain TEXT,
posting_pipeline TEXT,
preferred_language TEXT,
private_roster BOOLEAN,
- real_name TEXT,
+ display_name TEXT,
reject_these_nonmembers BYTEA,
reply_goes_to_list INTEGER,
reply_to_address TEXT,
@@ -154,7 +157,7 @@ CREATE TABLE address (
id SERIAL NOT NULL,
email TEXT,
_original TEXT,
- real_name TEXT,
+ display_name TEXT,
verified_on TIMESTAMP,
registered_on TIMESTAMP,
user_id INTEGER,
@@ -168,7 +171,7 @@ CREATE TABLE address (
CREATE TABLE "user" (
id SERIAL NOT NULL,
- real_name TEXT,
+ display_name TEXT,
password BYTEA,
_user_id UUID,
_created_on TIMESTAMP,