diff --git a/storage/postgresql.go b/storage/postgresql.go index 8eafed6..2eb1b3b 100644 --- a/storage/postgresql.go +++ b/storage/postgresql.go @@ -1,17 +1,18 @@ package storage import ( - "ariga.io/atlas/sql/postgres" - "ariga.io/atlas/sql/schema" "context" "database/sql" "encoding/json" "fmt" + "os" + "strconv" + + "ariga.io/atlas/sql/postgres" + "ariga.io/atlas/sql/schema" "github.com/lib/pq" _ "github.com/lib/pq" "github.com/spf13/viper" - "os" - "strconv" ) type PostgresqlStorage struct {