3 * Cleans up old database tables, dropping old indexes and fields.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
21 * @ingroup Maintenance
24 require_once __DIR__
. '/Maintenance.php';
27 * Maintenance script to cleans up old database tables, dropping old indexes
30 * @ingroup Maintenance
32 class CleanupAncientTables
extends Maintenance
{
34 public function __construct() {
35 parent
::__construct();
36 $this->addDescription( 'Cleanup ancient tables and indexes' );
37 $this->addOption( 'force', 'Actually run this script' );
40 public function execute() {
41 if ( !$this->hasOption( 'force' ) ) {
42 $this->error( "This maintenance script will remove old columns and indexes.\n"
43 . "It is recommended to backup your database first, and ensure all your data has\n"
44 . "been migrated to newer tables. If you want to continue, run this script again\n"
49 $db = $this->getDB( DB_MASTER
);
54 'ip_blocks_old', // Temporary in 1.6
57 // 'math', // 1.18, but don't want to drop if math extension is enabled...
59 'oldwatchlist', // pre 1.1?
65 foreach ( $ancientTables as $table ) {
66 if ( $db->tableExists( $table, __METHOD__
) ) {
67 $this->output( "Dropping table $table..." );
68 $db->dropTable( $table, __METHOD__
);
69 $this->output( "done.\n" );
73 $this->output( "Cleaning up text table\n" );
78 'name_title_timestamp',
82 foreach ( $oldIndexes as $index ) {
83 if ( $db->indexExists( 'text', $index, __METHOD__
) ) {
84 $this->output( "Dropping index $index from the text table..." );
85 $db->query( "DROP INDEX " . $db->addIdentifierQuotes( $index )
86 . " ON " . $db->tableName( 'text' ) );
87 $this->output( "done.\n" );
101 foreach ( $oldFields as $field ) {
102 if ( $db->fieldExists( 'text', $field, __METHOD__
) ) {
103 $this->output( "Dropping the $field field from the text table..." );
104 $db->query( "ALTER TABLE " . $db->tableName( 'text' )
105 . " DROP COLUMN " . $db->addIdentifierQuotes( $field ) );
106 $this->output( "done.\n" );
109 $this->output( "Done!\n" );
113 $maintClass = "CleanupAncientTables";
114 require_once RUN_MAINTENANCE_IF_MAIN
;