From 1c8186ac0df2c35544b43def53140b1cc0738766 Mon Sep 17 00:00:00 2001 From: Sam Reed Date: Fri, 11 Nov 2011 00:05:04 +0000 Subject: [PATCH] * (bug 30062) Add $wgDBprefix option to cli installer Patch by Grunny --- maintenance/install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/install.php b/maintenance/install.php index dba43400c3..9a408aa630 100644 --- a/maintenance/install.php +++ b/maintenance/install.php @@ -51,6 +51,7 @@ class CommandLineInstaller extends Maintenance { $this->addOption( 'dbport', 'The database port; only for PostgreSQL (5432)', false, true ); $this->addOption( 'dbname', 'The database name (my_wiki)', false, true ); $this->addOption( 'dbpath', 'The path for the SQLite DB (/var/data)', false, true ); + $this->addOption( 'dbprefix', 'Optional database table name prefix', false, true ); $this->addOption( 'installdbuser', 'The user to use for installing (root)', false, true ); $this->addOption( 'installdbpass', 'The pasword for the DB user to install as.', false, true ); $this->addOption( 'dbuser', 'The user to use for normal operations (wikiuser)', false, true ); -- 2.20.1