lume/src-tauri/prisma/schema.prisma
2023-04-02 08:30:36 +07:00

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