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

7 lines
289 B
SQL

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