Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 76e4c83

Browse files
smackerRoberto Santalla
authored and
Roberto Santalla
committedAug 17, 2018
use golang-migrate/migrate instead of mattes/migrate (#290)
Signed-off-by: Maxim Sukharev <[email protected]>
1 parent a97563e commit 76e4c83

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎generator/cli/kallax/cmd/migrate.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"fmt"
55
"path/filepath"
66

7-
"github.com/mattes/migrate"
8-
_ "github.com/mattes/migrate/database/postgres"
9-
_ "github.com/mattes/migrate/source/file"
7+
"github.com/golang-migrate/migrate"
8+
_ "github.com/golang-migrate/migrate/database/postgres"
9+
_ "github.com/golang-migrate/migrate/source/file"
1010

1111
"gopkg.in/src-d/go-kallax.v1/generator"
1212
cli "gopkg.in/urfave/cli.v1"

0 commit comments

Comments
 (0)
Please sign in to comment.