Skip to content

Commit

Permalink
Merge pull request #1272 from Ebbele/master
Browse files Browse the repository at this point in the history
postgres Driver is missing types import on non nullable char column
  • Loading branch information
stephenafamo committed Apr 17, 2023
2 parents e6989a7 + dc8cee1 commit 5acef24
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/sqlboiler-psql/driver/psql.go
Original file line number Diff line number Diff line change
Expand Up @@ -1048,6 +1048,9 @@ func (p PostgresDriver) Imports() (importers.Collection, error) {
"types.Decimal": {
ThirdParty: importers.List{`"github.com/volatiletech/sqlboiler/v4/types"`},
},
"types.Byte": {
ThirdParty: importers.List{`"github.com/volatiletech/sqlboiler/v4/types"`},
},
"types.BytesArray": {
ThirdParty: importers.List{`"github.com/volatiletech/sqlboiler/v4/types"`},
},
Expand Down

0 comments on commit 5acef24

Please sign in to comment.