// 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) }