From e11a96e0db1f59cea89698cf966a223d20322ff0 Mon Sep 17 00:00:00 2001 From: Aleksei Maslov Date: Mon, 15 Apr 2019 17:55:59 +0800 Subject: [PATCH] prepared PR to pressly --- README.md | 2 +- cmd/goose/main.go | 6 +++--- create.go | 2 +- examples/go-migrations/00002_rename_root.go | 2 +- examples/go-migrations/main.go | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index e77057e..4c870b6 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Examples: goose mysql "user:password@/dbname?parseTime=true" status goose redshift "postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db" status goose tidb "user:password@/dbname?parseTime=true" status - goose sqlserver "sqlserver://user:password@dbname:1433?database=master"" status + goose sqlserver "sqlserver://user:password@dbname:1433?database=master" status Options: diff --git a/cmd/goose/main.go b/cmd/goose/main.go index ff0bd51..dcb7a0b 100644 --- a/cmd/goose/main.go +++ b/cmd/goose/main.go @@ -6,7 +6,7 @@ import ( "log" "os" - "github.com/bandlab/goose" + "github.com/pressly/goose" ) var ( @@ -83,7 +83,7 @@ Drivers: postgres mysql sqlite3 - sqlserver + sqlserver redshift Examples: @@ -97,7 +97,7 @@ Examples: goose mysql "user:password@/dbname?parseTime=true" status goose redshift "postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db" status goose tidb "user:password@/dbname?parseTime=true" status - goose sqlserver "sqlserver://user:password@dbname:1433?database=master"" status + goose sqlserver "sqlserver://user:password@dbname:1433?database=master" status Options: ` diff --git a/create.go b/create.go index dfb75aa..55fe540 100644 --- a/create.go +++ b/create.go @@ -72,7 +72,7 @@ var goSQLMigrationTemplate = template.Must(template.New("goose.go-migration").Pa import ( "database/sql" - "github.com/bandlab/goose" + "github.com/pressly/goose" ) func init() { diff --git a/examples/go-migrations/00002_rename_root.go b/examples/go-migrations/00002_rename_root.go index 78d4907..069d40a 100644 --- a/examples/go-migrations/00002_rename_root.go +++ b/examples/go-migrations/00002_rename_root.go @@ -3,7 +3,7 @@ package main import ( "database/sql" - "github.com/bandlab/goose" + "github.com/pressly/goose" ) func init() { diff --git a/examples/go-migrations/main.go b/examples/go-migrations/main.go index f91a97a..77c9997 100644 --- a/examples/go-migrations/main.go +++ b/examples/go-migrations/main.go @@ -7,7 +7,7 @@ import ( "log" "os" - "github.com/bandlab/goose" + "github.com/pressly/goose" _ "github.com/mattn/go-sqlite3" )