19 lines
450 B
Plaintext
19 lines
450 B
Plaintext
datasource db {
|
|
provider = "sqlite"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
binaryTargets = "native"
|
|
}
|
|
|
|
// Define your own datamodels here and run `yarn redwood prisma migrate dev`
|
|
// to create migrations for them and apply to your dev DB.
|
|
// TODO: Please remove the following example:
|
|
model UserExample {
|
|
id Int @id @default(autoincrement())
|
|
email String @unique
|
|
name String?
|
|
}
|