Followup r56684: Add new message 'createaccounterror' for errors on account creation...
[lhc/web/wiklou.git] / maintenance / archives / patch-img_metadata.sql
1 -- Moving img_exif to img_metadata, so the name won't be so confusing when we
2 -- Use it for Ogg metadata or something like that.
3
4 ALTER TABLE /*$wgDBprefix*/image ADD (
5 img_metadata mediumblob NOT NULL
6 );