faded as a hoe

This commit is contained in:
Omer Sabic 2024-05-14 00:08:00 +02:00
parent d373a8c26e
commit 5247feb40a

View File

@ -50,3 +50,7 @@ export const signups = pgTable("signups", {
source: text("source"), source: text("source"),
created_at: timestamp("created_at").defaultNow().notNull() created_at: timestamp("created_at").defaultNow().notNull()
}); });
export const waitlist = pgTable("waitlist", {
email: text("email")
});