mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-09-02 19:23:49 +00:00
6 lines
156 B
MySQL
6 lines
156 B
MySQL
|
-- Add a blurhash column for image_details
|
||
|
ALTER TABLE image_details
|
||
|
-- Supposed to be 20-30 chars, use 50 to be safe
|
||
|
ADD COLUMN blurhash varchar(50);
|
||
|
|