Skip to content
Discussion options

You must be logged in to vote

The current version (v3.0.21) of PromptManager does NOT store binary image data or thumbnails in the database. The database schema only stores:

prompts table:

  • Text prompts and metadata (category, tags, rating, notes, hash)

generated_images table:

  • image_path (TEXT) - File path only, not binary
  • filename (TEXT)
  • workflow_data (TEXT) - JSON metadata
  • prompt_metadata (TEXT) - JSON metadata
  • parameters (TEXT) - JSON metadata

The gallery system works by storing file paths and reading images from disk on-demand, not by storing image binaries in the database.

Likely Causes of 7GB Database

Given you're using v1, here are the probable causes:

  1. SQLite Bloat from Many Operations: Frequent inserts/upd…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@VladanZ
Comment options

Answer selected by VladanZ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants