Skip to content

Commit

Permalink
Update PostgresSchema.php
Browse files Browse the repository at this point in the history
Remove redundant code.
  • Loading branch information
ajquick committed Jan 17, 2017
1 parent 39235a7 commit 05f7113
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/Database/Schema/PostgresSchema.php
Original file line number Diff line number Diff line change
Expand Up @@ -409,8 +409,6 @@ public function columnSql(Table $table, $name)

if (isset($data['null']) && $data['null'] === false) {
$out .= ' NOT NULL';
} elseif (isset($data['null']) && $data['null'] === true) {
$out .= ' NULL';
}

if (isset($data['default']) &&
Expand Down

0 comments on commit 05f7113

Please sign in to comment.