20 lines
368 B
Plaintext
20 lines
368 B
Plaintext
// This is your Prisma schema file,
|
|
// learn more about it in the docs: https://pris.ly/d/prisma-schema
|
|
|
|
generator client {
|
|
provider = "prisma-client-js"
|
|
}
|
|
|
|
datasource db {
|
|
provider = "sqlite"
|
|
url = "file:./dev.db"
|
|
}
|
|
|
|
model Lightshow {
|
|
id Int @id @default(autoincrement())
|
|
name String
|
|
audio Bytes
|
|
audioFormat String
|
|
fseq Bytes
|
|
}
|