diff --git a/application/core/db/MssqlSchema.php b/application/core/db/MssqlSchema.php index 1ac7064dc98..8d605d36a69 100644 --- a/application/core/db/MssqlSchema.php +++ b/application/core/db/MssqlSchema.php @@ -40,14 +40,5 @@ public function getColumnType($type) $result .= ' NULL'; } return $result; - } - - // Original function calls getColumnType twice for unkown reasons - public function alterColumn($table, $column, $type) - { - $sql='ALTER TABLE ' . $this->quoteTableName($table) . ' ALTER COLUMN ' - . $this->quoteColumnName($column) . ' ' - . $this->getColumnType($type); - return $sql; - } + } } \ No newline at end of file