Localisation updates from https://translatewiki.net.
[lhc/web/wiklou.git] / maintenance / mssql / 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 ADD img_description_id bigint NOT NULL CONSTRAINT DF_img_description_id DEFAULT 0 CONSTRAINT FK_img_description_id FOREIGN KEY REFERENCES /*_*/comment(comment_id);