Commit 6a26de11 authored by beberlei's avatar beberlei

[2.0] Fixed DDC-103 - Add missing changed file.

parent 79f4fcb3
...@@ -685,7 +685,10 @@ abstract class AbstractSchemaManager ...@@ -685,7 +685,10 @@ abstract class AbstractSchemaManager
*/ */
public function alterTable($name, array $changes, $check = false) public function alterTable($name, array $changes, $check = false)
{ {
$this->_execSql($this->_platform->getAlterTableSql($name, $changes, $check)); $queries = $this->_platform->getAlterTableSql($name, $changes, $check);
foreach($queries AS $ddlQuery) {
$this->_execSql($ddlQuery);
}
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment