Skip to content

Commit

Permalink
FIX BigIng bug with default clause
Browse files Browse the repository at this point in the history
  • Loading branch information
dhensby committed Nov 10, 2016
1 parent f2ba2f6 commit d3d2875
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/PostgreSQLSchemaManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ public function int($values)
*/
public function bigint($values)
{
return "bigint default" . (int)$values['default'];
return "bigint default " . (int)$values['default'];
}

/**
Expand Down

0 comments on commit d3d2875

Please sign in to comment.