X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcleanupAncientTables.php;h=add967adf38b8fbee4d0bfad09b7fcd6eb3588ec;hb=4ce7d8a4cd2c9893102634e820cf7f6349244259;hp=7f67b60e6b28751f33f27c3dc93e5f08be0443fe;hpb=1f2706b49939bfc85ec5abc8ccc24aacd938eed0;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/cleanupAncientTables.php b/maintenance/cleanupAncientTables.php index 7f67b60e6b..add967adf3 100644 --- a/maintenance/cleanupAncientTables.php +++ b/maintenance/cleanupAncientTables.php @@ -47,7 +47,7 @@ class CleanupAncientTables extends Maintenance { } $db = $this->getDB( DB_MASTER ); - $ancientTables = array( + $ancientTables = [ 'blobs', // 1.4 'brokenlinks', // 1.4 'cur', // 1.4 @@ -60,7 +60,7 @@ class CleanupAncientTables extends Maintenance { 'trackback', // 1.19 'user_rights', // 1.5 'validate', // 1.6 - ); + ]; foreach ( $ancientTables as $table ) { if ( $db->tableExists( $table, __METHOD__ ) ) { @@ -72,13 +72,13 @@ class CleanupAncientTables extends Maintenance { $this->output( "Cleaning up text table\n" ); - $oldIndexes = array( + $oldIndexes = [ 'old_namespace', 'old_timestamp', 'name_title_timestamp', 'user_timestamp', 'usertext_timestamp', - ); + ]; foreach ( $oldIndexes as $index ) { if ( $db->indexExists( 'text', $index, __METHOD__ ) ) { $this->output( "Dropping index $index from the text table..." ); @@ -88,7 +88,7 @@ class CleanupAncientTables extends Maintenance { } } - $oldFields = array( + $oldFields = [ 'old_namespace', 'old_title', 'old_comment', @@ -97,7 +97,7 @@ class CleanupAncientTables extends Maintenance { 'old_timestamp', 'old_minor_edit', 'inverse_timestamp', - ); + ]; foreach ( $oldFields as $field ) { if ( $db->fieldExists( 'text', $field, __METHOD__ ) ) { $this->output( "Dropping the $field field from the text table..." );