Merge "Use {{int:}} on MediaWiki:Blockedtext and MediaWiki:Autoblockedtext"
[lhc/web/wiklou.git] / maintenance / archives / patch-drop-ar_text.sql
1 -- T33223: Remove obsolete ar_text and ar_flags columns
2 -- (and make ar_text_id not nullable and default 0)
3
4 ALTER TABLE /*_*/archive
5 DROP COLUMN ar_text,
6 DROP COLUMN ar_flags,
7 CHANGE COLUMN ar_text_id ar_text_id int unsigned NOT NULL DEFAULT 0;