mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
15 lines
219 B
Plaintext
15 lines
219 B
Plaintext
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "postgresql"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
model user {
|
|
id Int @id @default(autoincrement())
|
|
email String
|
|
password String
|
|
}
|