Files
lume/src-tauri/prisma/schema.prisma
T

12 lines
286 B
Plaintext

datasource db {
provider = "sqlite"
url = "file:lume.db"
}
generator client {
// Corresponds to the cargo alias created earlier
provider = "cargo prisma"
// The location to generate the client. Is relative to the position of the schema
output = "../src/prisma.rs"
}