Merge "Use {{int:}} on MediaWiki:Blockedtext and MediaWiki:Autoblockedtext"
[lhc/web/wiklou.git] / maintenance / archives / patch-nullable-ar_text.sql
1 --
2 -- patch-nullable-ar_text.sql
3 --
4 -- This patch is provided as an example for people not using update.php.
5 -- You need to make a change like this before running a version of MediaWiki
6 -- containing Gerrit change 5ca2d4a551, then you can run maintenance/migrateArchiveText.php
7 -- and apply patch-drop-ar_text.sql at your leisure.
8 --
9 -- See also T33223.
10
11 ALTER TABLE /*_*/archive
12 MODIFY COLUMN ar_text mediumblob NULL,
13 MODIFY COLUMN ar_flags tinyblob NULL;