CoolFace
Apppublic

radames/stable-cascade-api

sourceHugging Faceupdated 3y agoView on Hugging Face
24likes
schema.sql14 linesDownload Raw Back to root
1PRAGMA foreign_keys = OFF;2 3BEGIN TRANSACTION;4 5CREATE TABLE cache (6    id INTEGER PRIMARY KEY AUTOINCREMENT,7    prompt TEXT NOT NULL,8    negative_prompt TEXT NOT NULL,9    image_path TEXT NOT NULL,10    seed INTEGER NOT NULL,11    created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL12);13 14COMMIT;