lora-studio / prisma /schema.prisma
enzostvs's picture
enzostvs HF staff
refacto models API, now connected to hugging face api + wip submit model through lora studio
17aecfb
raw
history blame
No virus
518 Bytes
// 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 = env("DATABASE_URL")
}
model Model {
id String @id @default(uuid())
createdAt DateTime @default(now())
repo String @unique
title String
// trigger_word String?
image String
// weights String?
likes Int?
downloads Int?
isPublic Boolean @default(false)
}