MINOR Removed unused variables from MSSQLDatabase::alterTable()

This commit is contained in:
Sean Harvey 2011-10-13 14:13:33 +13:00
parent 6cbe886a33
commit a9444a8313

View File

@ -487,7 +487,6 @@ class MSSQLDatabase extends SS_Database {
* @param $alteredIndexes Updated indexes, a map of index name => index type * @param $alteredIndexes Updated indexes, a map of index name => index type
*/ */
public function alterTable($tableName, $newFields = null, $newIndexes = null, $alteredFields = null, $alteredIndexes = null, $alteredOptions=null, $advancedOptions=null) { public function alterTable($tableName, $newFields = null, $newIndexes = null, $alteredFields = null, $alteredIndexes = null, $alteredOptions=null, $advancedOptions=null) {
$fieldSchemas = $indexSchemas = '';
$alterList = array(); $alterList = array();
$indexList = $this->indexList($tableName); $indexList = $this->indexList($tableName);