mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-12-23 11:21:32 +00:00
6 lines
223 B
SQL
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);
|
|
|