Files
cadhub/api/prisma/schema.prisma
Kurt Hutten 5f8cccf336 First commit
2020-10-10 06:18:37 +11:00

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?
}