Manual:MigrateImageCommentTemp.php

From mediawiki.org
MediaWiki version:
1.32

Details

migrateImageCommentTemp.php is a maintenance script that merges image_comment_temp into the image table.

The image_comment_temp table is a temporary table creating a relation between each row of the image table and a row of the comment table. It was created to avoid blocking on an alteration of the image table. On large wikis like Wikimedia Commons, altering the image table is a months-long process. The image_comment_temp table was created to avoid such an alteration, and will be merged back into the image table in the future.

The image_comment_temp table was introduced in Gerrit change 357892. See also revision_comment_temp table.

In MediaWiki 1.32, the image_comment_temp table was merged into the image table with task T188132. After that, the image_comment_temp table is removed.

This script runs by default when you run Manual:Update.php .

Options/Arguments

This script does not take any options or arguments.

Usage

php maintenance/migrateImageCommentTemp.php
Terminal

Common error

Run update.php to create img_description_id.

If you run this script directly, you will get this error as this script requires the img_description_id field in the image table, so the best way to run this script is to run through update.php .

image_comment_temp does not exist, so nothing to do.

This error occurs when the image_comment_temp table does not exist, so no further action is necessary.

Ignoring $count orphaned image_comment_temp row(s).

This error indicates that even after running the script, there are some orphaned rows. In this case, you can run the script again or check the orphaned rows manually.

See also