Plume/migrations/postgres/2020-01-05-232816_add_block.../up.sql

7 lines
288 B
SQL

-- Your SQL goes here
CREATE TABLE email_blocklist(id SERIAL PRIMARY KEY,
email_address TEXT UNIQUE,
note TEXT,
notify_user BOOLEAN DEFAULT FALSE,
notification_text TEXT);