-
Notifications
You must be signed in to change notification settings - Fork 528
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swap tab indentations with spaces in help command (#853)
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -271,15 +271,15 @@ Examples: | |
goose clickhouse "tcp://127.0.0.1:9000" status | ||
goose vertica "vertica://user:password@localhost:5433/dbname?connection_load_balance=1" status | ||
goose ydb "grpcs://localhost:2135/local?go_query_mode=scripting&go_fake_tx=scripting&go_query_bind=declare,numeric" status | ||
goose turso "libsql://dbname.turso.io?authToken=token" status | ||
goose turso "libsql://dbname.turso.io?authToken=token" status | ||
GOOSE_DRIVER=sqlite3 GOOSE_DBSTRING=./foo.db goose status | ||
GOOSE_DRIVER=sqlite3 GOOSE_DBSTRING=./foo.db goose create init sql | ||
GOOSE_DRIVER=postgres GOOSE_DBSTRING="user=postgres dbname=postgres sslmode=disable" goose status | ||
GOOSE_DRIVER=mysql GOOSE_DBSTRING="user:password@/dbname" goose status | ||
GOOSE_DRIVER=redshift GOOSE_DBSTRING="postgres://user:[email protected]:5439/db" goose status | ||
GOOSE_DRIVER=turso GOOSE_DBSTRING="libsql://dbname.turso.io?authToken=token" goose status | ||
GOOSE_DRIVER=clickhouse GOOSE_DBSTRING="clickhouse://user:[email protected]:9440/dbname?secure=true&skip_verify=false" goose status | ||
GOOSE_DRIVER=clickhouse GOOSE_DBSTRING="clickhouse://user:[email protected]:9440/dbname?secure=true&skip_verify=false" goose status | ||
Options: | ||
` | ||
|