Skip to content

Commit

Permalink
Due to db_change_column, _get_column_info has to call db_list_columns…
Browse files Browse the repository at this point in the history
… requesting the details. - fixes #2109
  • Loading branch information
emanuele45 committed Jun 29, 2015
1 parent 68d3bed commit d512749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/database/DbTable.class.php
Expand Up @@ -202,7 +202,7 @@ protected function _alter_table($table_name, $statement)
*/
protected function _get_column_info($table_name, $column_name)
{
$columns = $this->db_list_columns($table_name, false);
$columns = $this->db_list_columns($table_name, true);

foreach ($columns as $column)
{
Expand Down

0 comments on commit d512749

Please sign in to comment.