X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FmigrateArchiveText.php;h=b2b14cbdc4c389e153c2eed34f379e3611a712a2;hb=977b389d6a6ed441891fba350c3a6e28d1f21315;hp=e9beaa350eee72a681a18c97ae3c37bf5c57df3c;hpb=0c2687f44eb0e8c7f480b7303f89056682ba0bfb;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/migrateArchiveText.php b/maintenance/migrateArchiveText.php index e9beaa350e..b2b14cbdc4 100644 --- a/maintenance/migrateArchiveText.php +++ b/maintenance/migrateArchiveText.php @@ -24,7 +24,7 @@ require_once __DIR__ . '/Maintenance.php'; /** - * Maintenance script that migrates archive.ar_text and ar_flags to modern storage + * Maintenance script that migrates archive.ar_text and ar_flags to text storage * * @ingroup Maintenance * @since 1.31 @@ -33,7 +33,7 @@ class MigrateArchiveText extends LoggedUpdateMaintenance { public function __construct() { parent::__construct(); $this->addDescription( - 'Migrates comments from pre-1.5 ar_text and ar_flags columns to modern storage' + 'Migrates content from pre-1.5 ar_text and ar_flags columns to text storage' ); $this->addOption( 'replace-missing', @@ -143,7 +143,7 @@ class MigrateArchiveText extends LoggedUpdateMaintenance { } $this->output( "... $last\n" ); - // $this->commitTransaction() already waited for slaves, no need to re-wait here. + // $this->commitTransaction() already waited for replication; no need to re-wait here } $this->output( "Completed ar_text migration, $count rows updated, $errors missing data.\n" );