feat: create mymx service

This commit is contained in:
Jet Pham 2026-03-04 12:20:26 -08:00
parent 478af69792
commit ad8cb52169
No known key found for this signature in database
20 changed files with 3152 additions and 1 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()
);