Hugging Face
Models
Datasets
Spaces
Buckets
new
Docs
Enterprise
Pricing
Website
Tasks
HuggingChat
Collections
Languages
Organizations
Community
Blog
Posts
Daily Papers
Learn
Discord
Forum
GitHub
Solutions
Team & Enterprise
Hugging Face PRO
Enterprise Support
Inference Providers
Inference Endpoints
Storage Buckets
Log In
Sign Up
Spaces:
huggingface-projects
/
diffusers-gallery-bot
like
6
Runtime error
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
refs/pr/1
diffusers-gallery-bot
/
schema.sql
radames
resize images and use s3
8964ef4
over 3 years ago
raw
Copy download link
history
blame
190 Bytes
PRAGMA foreign_keys
=
OFF;
BEGIN
TRANSACTION;
CREATE
TABLE
models (
id TEXT
PRIMARY
KEY
NOT
NULL
,
data json,
created_at
TIMESTAMP
DEFAULT
CURRENT_TIMESTAMP
NOT
NULL
);
COMMIT
;