gendesign/data/sql/53_schema_kn_thumbs.sql
2026-04-27 20:26:55 +03:00

10 lines
355 B
SQL
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- Add thumbnail path column for cached locally-served thumbnails.
-- Generated by Pillow at download time (320×240 cover, WebP q=70).
-- Idempotent.
ALTER TABLE domrf_kn_photos
ADD COLUMN IF NOT EXISTS thumb_path TEXT;
CREATE INDEX IF NOT EXISTS idx_kn_photos_obj_visible
ON domrf_kn_photos (obj_id)
WHERE COALESCE(hidden, FALSE) = FALSE;