add sonner + project creation working

This commit is contained in:
Ishaan Dey
2024-04-27 16:22:35 -04:00
parent 676f88a7ce
commit d941e2c056
18 changed files with 427 additions and 75 deletions

View File

@ -24,6 +24,7 @@ export const sandbox = sqliteTable("sandbox", {
.unique(),
name: text("name").notNull(),
type: text("type", { enum: ["react", "node"] }).notNull(),
visibility: text("visibility", { enum: ["public", "private"] }),
userId: text("user_id")
.notNull()
.references(() => user.id),