Initalisation de base

This commit is contained in:
Quentin Millardet
2023-12-29 00:31:59 +01:00
parent 3564c6a838
commit 9032254898
49 changed files with 3238 additions and 27 deletions

BIN
server/prisma/dev.db Normal file

Binary file not shown.

View File

@@ -0,0 +1,19 @@
// 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
}