Initalisation de base
This commit is contained in:
BIN
server/prisma/dev.db
Normal file
BIN
server/prisma/dev.db
Normal file
Binary file not shown.
19
server/prisma/schema.prisma
Normal file
19
server/prisma/schema.prisma
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user