This commit is contained in:
Jet Pham 2026-03-05 00:47:32 -08:00
commit 8daedbd5b6
No known key found for this signature in database
13 changed files with 3135 additions and 0 deletions

View file

@ -0,0 +1,6 @@
CREATE TABLE IF NOT EXISTS emails (
id SERIAL PRIMARY KEY,
body TEXT NOT NULL,
subject TEXT,
received_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
);