Use TOCData methods to process new headings
[mediawiki.git] / maintenance / archives / patch-drop-image-user-fields.sql
blob5e197a45e663ebddc0f4987d040ca9187de82de2
1 --
2 -- patch-drop-image-user-fields.sql
3 --
4 -- T188327. Drop old xx_user and xx_user_text fields, and defaults from xx_actor fields.
6 ALTER TABLE /*_*/image
7   DROP INDEX /*i*/img_usertext_timestamp,
8   DROP COLUMN img_user,
9   DROP COLUMN img_user_text,
10   ALTER COLUMN img_actor DROP DEFAULT;