Skip to content

Commit

Permalink
Use gopkg.in/gorp.v1
Browse files Browse the repository at this point in the history
Fixes #19
  • Loading branch information
rubenv committed Jul 13, 2015
1 parent 803b4ea commit 53184e1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion migrate.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import (
"strings"
"time"

"github.com/go-gorp/gorp"
"github.com/rubenv/sql-migrate/sqlparse"
"gopkg.in/gorp.v1"
)

type MigrationDirection int
Expand Down
2 changes: 1 addition & 1 deletion migrate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"database/sql"
"os"

"github.com/go-gorp/gorp"
_ "github.com/mattn/go-sqlite3"
. "gopkg.in/check.v1"
"gopkg.in/gorp.v1"
)

var filename = "/tmp/sql-migrate-sqlite.db"
Expand Down
2 changes: 1 addition & 1 deletion sql-migrate/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"fmt"
"io/ioutil"

"github.com/go-gorp/gorp"
"github.com/rubenv/sql-migrate"
"gopkg.in/gorp.v1"
"gopkg.in/yaml.v1"

_ "github.com/go-sql-driver/mysql"
Expand Down
2 changes: 1 addition & 1 deletion sql-migrate/mssql.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package main

import (
_ "github.com/denisenkom/go-mssqldb"
"github.com/go-gorp/gorp"
"gopkg.in/gorp.v1"
)

func init() {
Expand Down

0 comments on commit 53184e1

Please sign in to comment.