Merge "maintenance: Document secondary purpose of --server"
[lhc/web/wiklou.git] / maintenance / archives / patch-image-img_description_id.sql
1 --
2 -- patch-image-img_description_id.sql
3 --
4 -- T188132. Add `img_description_id` to the `image` table.
5
6 ALTER TABLE /*_*/image
7 ADD COLUMN img_description_id bigint unsigned NOT NULL DEFAULT 0 AFTER img_description;