Skip to content

Commit 53184e1

Browse files
committed
Use gopkg.in/gorp.v1
Fixes #19
1 parent 803b4ea commit 53184e1

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

migrate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"strings"
1515
"time"
1616

17-
"github.com/go-gorp/gorp"
1817
"github.com/rubenv/sql-migrate/sqlparse"
18+
"gopkg.in/gorp.v1"
1919
)
2020

2121
type MigrationDirection int

migrate_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"database/sql"
55
"os"
66

7-
"github.com/go-gorp/gorp"
87
_ "github.com/mattn/go-sqlite3"
98
. "gopkg.in/check.v1"
9+
"gopkg.in/gorp.v1"
1010
)
1111

1212
var filename = "/tmp/sql-migrate-sqlite.db"

sql-migrate/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"fmt"
88
"io/ioutil"
99

10-
"github.com/go-gorp/gorp"
1110
"github.com/rubenv/sql-migrate"
11+
"gopkg.in/gorp.v1"
1212
"gopkg.in/yaml.v1"
1313

1414
_ "github.com/go-sql-driver/mysql"

sql-migrate/mssql.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package main
44

55
import (
66
_ "github.com/denisenkom/go-mssqldb"
7-
"github.com/go-gorp/gorp"
7+
"gopkg.in/gorp.v1"
88
)
99

1010
func init() {

0 commit comments

Comments
 (0)