Files
electron-ligthshowmanager/server/prisma/schema.prisma
Quentin Millardet 9032254898 Initalisation de base
2023-12-29 00:31:59 +01:00

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
}