Skip to content

Commit

Permalink
Dev Removed obsolete function
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jun 15, 2015
1 parent 7ece73b commit 8f2a4ae
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions application/core/db/MssqlSchema.php
Expand Up @@ -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;
}
}
}

0 comments on commit 8f2a4ae

Please sign in to comment.