Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
// 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 | |
createdAt DateTime | |
title String | |
image String | |
likes Int? | |
downloads Int? | |
isPublic Boolean | |
hf_user_id String? | |
Gallery Gallery[] | |
} | |
model Gallery { | |
id String | |
hf_user_id String? | |
createdAt DateTime | |
prompt String | |
image String | |
reactions Reaction[] | |
model Model | |
modelId String | |
} | |
model Reaction { | |
id String | |
createdAt DateTime | |
emoji String | |
hf_user_id String | |
Gallery Gallery? | |
galleryId String? | |
} | |