From cdec85f11a278839f92a87503fde6b333034afea Mon Sep 17 00:00:00 2001 From: Aaron L Date: Mon, 11 Jul 2016 15:21:04 -0700 Subject: [PATCH] Fix formatting. --- bdb/drivers/postgres.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bdb/drivers/postgres.go b/bdb/drivers/postgres.go index 4016912..8cd1eb4 100644 --- a/bdb/drivers/postgres.go +++ b/bdb/drivers/postgres.go @@ -105,9 +105,9 @@ func (p *PostgresDriver) Columns(tableName string) ([]bdb.Column, error) { } column := bdb.Column{ - Name: colName, - Type: colType, - Default: colDefault, + Name: colName, + Type: colType, + Default: colDefault, Nullable: Nullable == "YES", } columns = append(columns, column)