Canvas: Organize back and front components
Change-Id: I0f2c0bbe47b2693127a367a72321b24eb1af7796
diff --git a/apps/canvas/back/prisma/schema.prisma b/apps/canvas/back/prisma/schema.prisma
new file mode 100644
index 0000000..2fc0118
--- /dev/null
+++ b/apps/canvas/back/prisma/schema.prisma
@@ -0,0 +1,24 @@
+// This is your Prisma schema file,
+// learn more about it in the docs: https://pris.ly/d/prisma-schema
+
+// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions?
+// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init
+
+generator client {
+ provider = "prisma-client-js"
+}
+
+datasource db {
+ provider = "sqlite"
+ url = "file:./dodo.db"
+}
+
+model Project {
+ id Int @id @default(autoincrement())
+ userId String
+ name String
+ state Bytes?
+ draft Bytes?
+ instanceId String?
+ deployKey String?
+}
\ No newline at end of file