mirror of
https://github.com/YunoHost-Apps/mediawiki_ynh.git
synced 2024-09-03 19:46:05 +02:00
6 lines
207 B
SQL
6 lines
207 B
SQL
-- Moving img_exif to img_metadata, so the name won't be so confusing when we
|
|
-- Use it for Ogg metadata or something like that.
|
|
|
|
ALTER TABLE /*$wgDBprefix*/image ADD (
|
|
img_metadata mediumblob NOT NULL
|
|
);
|