feat: Add prisma to project
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
// This is your Prisma schema file,
|
||||
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
||||
|
||||
generator client {
|
||||
// learn more about it in the docs: https://pris.ly/d/prisma-schema generator client {
|
||||
provider = "prisma-client-js"
|
||||
}
|
||||
|
||||
@@ -9,3 +7,9 @@ datasource db {
|
||||
provider = "postgresql"
|
||||
url = env("DATABASE_URL")
|
||||
}
|
||||
|
||||
model User {
|
||||
id Int @default(autoincrement()) @id
|
||||
email String @unique
|
||||
name String?
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user