fix ticket 3429

This commit is contained in:
euromark 2012-12-03 12:31:56 +01:00
parent 9bcc05b18b
commit 41f2d812bb

View file

@ -279,8 +279,8 @@ class FixtureTask extends BakeTask {
* @return string fields definitions
*/
protected function _generateSchema($tableInfo) {
$schema = $this->_Schema->generateTable('f', $tableInfo);
return substr($schema, 13, -2);
$schema = trim($this->_Schema->generateTable('f', $tableInfo), "\n");
return substr($schema, 13, -1);
}
/**