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