Merge "Pass "services" through from coreRoutes.json to ObjectFactory"
[lhc/web/wiklou.git] / maintenance / archives / patch-image_name_primary.sql
1 -- Make the image name index unique
2
3 ALTER TABLE /*$wgDBprefix*/image DROP INDEX img_name;
4
5 ALTER TABLE /*$wgDBprefix*/image
6 ADD PRIMARY KEY img_name (img_name);