feat(orion): add rest api for waitlist

This commit is contained in:
talksik
2026-03-29 09:04:15 -07:00
parent c471c28bb0
commit acac407fd0
8 changed files with 631 additions and 2 deletions
+1
View File
@@ -0,0 +1 @@
DROP TABLE IF EXISTS waitlist_entries;
+7
View File
@@ -0,0 +1,7 @@
CREATE TABLE waitlist_entries (
id SERIAL PRIMARY KEY,
email VARCHAR(255) NOT NULL UNIQUE,
metadata JSONB NOT NULL DEFAULT '{}',
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
invited_at TIMESTAMPTZ
);