mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-05-07 06:12:50 +08:00
15 lines
363 B
SQL
15 lines
363 B
SQL
CREATE TABLE IF NOT EXISTS address_sender (
|
|
id INTEGER PRIMARY KEY,
|
|
address TEXT UNIQUE,
|
|
balance INTEGER DEFAULT 0,
|
|
enabled INTEGER DEFAULT 1,
|
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
);
|
|
|
|
CREATE TABLE IF NOT EXISTS sendbox (
|
|
id INTEGER PRIMARY KEY,
|
|
address TEXT,
|
|
raw TEXT,
|
|
created_at DATETIME DEFAULT CURRENT_TIMESTAMP
|
|
);
|