Skip to content

Commit 2f319b7

Browse files
committed
Drop the MySQL driver.
1 parent c2c584b commit 2f319b7

6 files changed

Lines changed: 5 additions & 316 deletions

File tree

driver/mysql/README.md

Lines changed: 0 additions & 24 deletions
This file was deleted.

driver/mysql/mysql.go

Lines changed: 0 additions & 185 deletions
This file was deleted.

driver/mysql/mysql_test.go

Lines changed: 0 additions & 103 deletions
This file was deleted.

go.mod

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
module github.com/Figure53/migrate
22

3+
go 1.17
4+
35
require (
46
github.com/fatih/color v1.7.0
5-
github.com/go-sql-driver/mysql v1.2.0
67
github.com/lib/pq v1.0.0
8+
)
9+
10+
require (
711
github.com/mattn/go-colorable v0.0.9 // indirect
812
github.com/mattn/go-isatty v0.0.4 // indirect
913
golang.org/x/sys v0.0.0-20180903190138-2b024373dcd9 // indirect

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=
22
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
3-
github.com/go-sql-driver/mysql v1.2.0 h1:C5cl8DzJiobQuZhND5+a3cOrrRhyaJBPHxZjLgdN8kk=
4-
github.com/go-sql-driver/mysql v1.2.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w=
53
github.com/lib/pq v1.0.0 h1:X5PMW56eZitiTeO7tKzZxFCSpbFZJtkMMooicw2us9A=
64
github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
75
github.com/mattn/go-colorable v0.0.9 h1:UVL0vNpWh04HeJXV0KLcaT7r06gOH2l4OW6ddYRUIY4=

main.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import (
1111
"time"
1212

1313
_ "github.com/Figure53/migrate/driver/bash"
14-
_ "github.com/Figure53/migrate/driver/mysql"
1514
_ "github.com/Figure53/migrate/driver/postgres"
1615
"github.com/Figure53/migrate/file"
1716
"github.com/Figure53/migrate/migrate"

0 commit comments

Comments
 (0)