Split down patch-comment-table.sql
[lhc/web/wiklou.git] / maintenance / archives / patch-image_comment_temp-table.sql
1 CREATE TABLE /*_*/image_comment_temp (
2 imgcomment_name varchar(255) binary NOT NULL,
3 imgcomment_description_id bigint unsigned NOT NULL,
4 PRIMARY KEY (imgcomment_name, imgcomment_description_id)
5 ) /*$wgDBTableOptions*/;
6 CREATE UNIQUE INDEX /*i*/imgcomment_name ON /*_*/image_comment_temp (imgcomment_name);