FIX BigIng bug with default clause

This commit is contained in:
Daniel Hensby 2016-11-10 00:21:28 +00:00
parent f2ba2f6717
commit d3d2875012
No known key found for this signature in database
GPG Key ID: 229831A941962E26
1 changed files with 1 additions and 1 deletions

View File

@ -1112,7 +1112,7 @@ class PostgreSQLSchemaManager extends DBSchemaManager
*/
public function bigint($values)
{
return "bigint default" . (int)$values['default'];
return "bigint default " . (int)$values['default'];
}
/**