Alexandru Serban
Results
2
issues of
Alexandru Serban
If the from table has a ROW_FORMAT and the to table doesn't the migration sql is: ALTER TABLE `table_name` ROW_FORMAT=; Which is not a correct format, it should be ROW_FORMAT=DEFAULT...
In Zend\Db\TableGateway\AbstractTableGateway update method if you send where as clossure is sent as a parameter in update->where `if ($where !== null) { $update->where($where); } ` So the closure end up...