mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-25 04:51:27 +00:00
7 lines
289 B
MySQL
7 lines
289 B
MySQL
|
-- 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);
|