1
0
mirror of synced 2025-02-20 22:23:14 +03:00

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

This commit is contained in:
beberlei 2009-11-02 15:10:26 +00:00
parent 79f4fcb3c4
commit 6a26de11ff

View File

@ -685,7 +685,10 @@ abstract class AbstractSchemaManager
*/
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);
}
}
/**