mirror of
https://github.com/GRFreire/nthmail.git
synced 2026-01-09 04:49:39 +00:00
10 lines
203 B
SQL
10 lines
203 B
SQL
pragma journal_mode = wal;
|
|
|
|
CREATE TABLE mails (
|
|
id integer not null primary key,
|
|
arrived_at integer not null,
|
|
rcpt_addr text not null,
|
|
from_addr text not null,
|
|
data blob not null
|
|
);
|