Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Duplicated from
enzostvs/stable-diffusion-tpu
ewnewq
/
stable-diffusion-tpu
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
ef3b17f
stable-diffusion-tpu
/
prisma
/
schema.prisma
Esteves Enzo
header subtitle
900465b
over 1 year ago
raw
Copy download link
history
blame
Safe
270 Bytes
generator client {
provider =
"prisma-client-js"
}
datasource db {
provider =
"sqlite"
url =
"file://data/dev.db"
}
model Image {
id
Int
@id
@default(autoincrement())
prompt String
blob Bytes
createdAt DateTime
@default(now())
}