Added documentation, and support in the cmd binary for tidb

pull/85/head
Simon Wikstrand 2017-12-04 18:51:48 +01:00
parent 87401987ed
commit 35a69f048d
No known key found for this signature in database
GPG Key ID: 1FE8AC12BCDD37E7
2 changed files with 7 additions and 1 deletions

View File

@ -67,6 +67,7 @@ Examples:
goose postgres "user=postgres dbname=postgres sslmode=disable" status
goose mysql "user:password@/dbname?parseTime=true" status
goose redshift "postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db" status
goose tidb "user:password@/dbname?parseTime=true" status
```
## create

View File

@ -46,7 +46,7 @@ func main() {
driver, dbstring, command := args[0], args[1], args[2]
switch driver {
case "postgres", "mysql", "sqlite3", "redshift":
case "postgres", "mysql", "sqlite3", "redshift", "tidb":
if err := goose.SetDialect(driver); err != nil {
log.Fatal(err)
}
@ -64,6 +64,10 @@ func main() {
driver = "postgres"
}
if driver == "tidb" {
driver = "mysql"
}
db, err := sql.Open(driver, dbstring)
if err != nil {
log.Fatalf("-dbstring=%q: %v\n", dbstring, err)
@ -104,6 +108,7 @@ Examples:
goose postgres "user=postgres dbname=postgres sslmode=disable" status
goose mysql "user:password@/dbname?parseTime=true" status
goose redshift "postgres://user:password@qwerty.us-east-1.redshift.amazonaws.com:5439/db" status
goose tidb "user:password@/dbname?parseTime=true" status
Options:
`