diff --git a/boilingcore/config.go b/boilingcore/config.go index d3c794cd3..939763b22 100644 --- a/boilingcore/config.go +++ b/boilingcore/config.go @@ -1,6 +1,6 @@ package boilingcore -import "github.com/vattle/sqlboiler/importers" +import "github.com/volatiletech/sqlboiler/importers" // Config for the running of the commands type Config struct { diff --git a/boilingcore/output.go b/boilingcore/output.go index 570aad034..f2b4ce707 100644 --- a/boilingcore/output.go +++ b/boilingcore/output.go @@ -12,7 +12,7 @@ import ( "text/template" "github.com/pkg/errors" - "github.com/vattle/sqlboiler/importers" + "github.com/volatiletech/sqlboiler/importers" ) var noEditDisclaimer = []byte(`// Code generated by SQLBoiler (https://github.com/volatiletech/sqlboiler). DO NOT EDIT. diff --git a/queries/query_builders_test.go b/queries/query_builders_test.go index aba7ed9a5..b7c4da5dd 100644 --- a/queries/query_builders_test.go +++ b/queries/query_builders_test.go @@ -10,7 +10,7 @@ import ( "testing" "github.com/davecgh/go-spew/spew" - "github.com/vattle/sqlboiler/drivers" + "github.com/volatiletech/sqlboiler/drivers" ) var writeGoldenFiles = flag.Bool( diff --git a/queries/reflect_test.go b/queries/reflect_test.go index 17c55fb2f..07df03593 100644 --- a/queries/reflect_test.go +++ b/queries/reflect_test.go @@ -7,7 +7,7 @@ import ( "strings" "testing" - "github.com/vattle/sqlboiler/drivers" + "github.com/volatiletech/sqlboiler/drivers" "gopkg.in/DATA-DOG/go-sqlmock.v1" )