21 lines
503 B
Plaintext
21 lines
503 B
Plaintext
datasource DS {
|
|
// optionally set multiple providers
|
|
// example: provider = ["sqlite", "postgresql"]
|
|
provider = "sqlite"
|
|
url = env("DATABASE_URL")
|
|
}
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
binaryTargets = "native"
|
|
}
|
|
|
|
// Define your own datamodels here and run `yarn redwood db save` to create
|
|
// migrations for them.
|
|
// TODO: Please remove the following example:
|
|
model UserExample {
|
|
id Int @id @default(autoincrement())
|
|
email String @unique
|
|
name String?
|
|
}
|