Skip to content

Commit 956ebe5

Browse files
committed
Switch to go-gorp.
1 parent f1ae5df commit 956ebe5

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
# sql-migrate
22

3-
> SQL Schema migration tool for [Go](http://golang.org/). Based on [gorp](https://github.com/coopernurse/gorp) and [goose](https://bitbucket.org/liamstask/goose).
3+
> SQL Schema migration tool for [Go](http://golang.org/). Based on [gorp](https://github.com/go-gorp/gorp) and [goose](https://bitbucket.org/liamstask/goose).
44
55
[![Build Status](https://travis-ci.org/rubenv/sql-migrate.svg?branch=master)](https://travis-ci.org/rubenv/sql-migrate) [![GoDoc](https://godoc.org/github.com/rubenv/sql-migrate?status.png)](https://godoc.org/github.com/rubenv/sql-migrate)
66

77
## Features
88

99
* Usable as a CLI tool or as a library
10-
* Supports SQLite, PostgreSQL, MySQL, MSSQL and Oracle databases (through [gorp](https://github.com/coopernurse/gorp))
10+
* Supports SQLite, PostgreSQL, MySQL, MSSQL and Oracle databases (through [gorp](https://github.com/go-gorp/gorp))
1111
* Can embed migrations into your application
1212
* Migrations are defined with SQL for full flexibility
1313
* Atomic migrations

migrate.go

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

17-
"github.com/coopernurse/gorp"
17+
"github.com/go-gorp/gorp"
1818
"github.com/rubenv/sql-migrate/sqlparse"
1919
)
2020

sql-migrate/config.go

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

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

sql-migrate/mssql.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package main
44

55
import (
6-
"github.com/coopernurse/gorp"
76
_ "github.com/denisenkom/go-mssqldb"
7+
"github.com/go-gorp/gorp"
88
)
99

1010
func init() {

0 commit comments

Comments
 (0)