diffusers-gallery-bot / schema.sql
radames's picture
resize images and use s3
8964ef4
raw
history blame
No virus
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;