lemmy/migrations/2024-11-25-161129_add_blurhash_to_image_details/up.sql
2024-11-25 11:24:35 -05:00

6 lines
223 B
SQL

-- Add a blurhash column for image_details
ALTER TABLE image_details
-- Supposed to be 20-30 chars, use 50 to be safe
-- TODO this should be made not null for future versions of pictrs
ADD COLUMN blurhash varchar(50);