aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Hanley <felix@userspace.com.au>2021-02-05 08:23:14 +0000
committerFelix Hanley <felix@userspace.com.au>2021-02-05 08:23:14 +0000
commitffea1a9952f15a6e3d637efe994cda667922ce19 (patch)
tree21c9f33907e385a154a2f8795bbd41a96ba26a35
parent771c6228c3417d22354511752212431c58b25172 (diff)
downloadmigrate-go1.16.tar.gz
migrate-go1.16.tar.bz2
-rw-r--r--README.md4
-rw-r--r--example_test.go2
-rw-r--r--go.mod2
3 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index ec3d3b8..177e351 100644
--- a/README.md
+++ b/README.md
@@ -19,8 +19,8 @@ A very simple migration library for your Go projects.
## Example usage
```go
-import "src.userspace.com.au/go-migrate"
-// or import "github.com/felix/go-migrate"
+import "src.userspace.com.au/migrate"
+// or import "github.com/felix/migrate"
db, err := sql.Open("pgx", uri)
//db, err := sql.Open("sqlite3", uri)
diff --git a/example_test.go b/example_test.go
index c381a8b..f28cd4a 100644
--- a/example_test.go
+++ b/example_test.go
@@ -5,7 +5,7 @@ import (
"embed"
"fmt"
- "src.userspace.com.au/go-migrate"
+ "src.userspace.com.au/migrate"
)
func ExampleNewFileMigrator() {
diff --git a/go.mod b/go.mod
index 2e1d466..1891da3 100644
--- a/go.mod
+++ b/go.mod
@@ -1,4 +1,4 @@
-module src.userspace.com.au/go-migrate
+module src.userspace.com.au/migrate
require github.com/mattn/go-sqlite3 v1.10.0