We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dc9a26 commit 8c4336aCopy full SHA for 8c4336a
.gitignore
@@ -3,9 +3,9 @@
3
*.test
4
5
# Files output by tests
6
-bin
7
-*.db
+/bin
+/*.db
8
9
# We don't want to switch to Go modules, until we release v3.0.0 or later.
10
-go.mod
11
-go.sum
+/go.mod
+/go.sum
cmd/goose/go.mod
@@ -0,0 +1,11 @@
1
+module github.com/pressly/goose/cmd/goose
2
+
+go 1.12
+require (
+ github.com/go-sql-driver/mysql v1.4.1
+ github.com/lib/pq v1.0.0
+ github.com/mattn/go-sqlite3 v1.10.0
+ github.com/pkg/errors v0.8.1
+ github.com/ziutek/mymysql v1.5.4
+)
0 commit comments