nthmail/migration.sql
Guilherme Rugai Freire e211834d39
enable wal mode
2024-07-10 19:07:24 -03:00

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
);