Fix table prefixing in patch-change_tag-change_tag_rc_tag_id.sql
[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 );