Navigation Menu

Skip to content

Commit

Permalink
change skip-drop description
Browse files Browse the repository at this point in the history
  • Loading branch information
touyu committed Oct 28, 2019
1 parent e28590b commit 8b20f5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/mysqldef/mysqldef.go
Expand Up @@ -26,7 +26,7 @@ func parseOptions(args []string) (adapter.Config, *sqldef.Options) {
File string `long:"file" description:"Read schema SQL from the file, rather than stdin" value-name:"sql_file" default:"-"`
DryRun bool `long:"dry-run" description:"Don't run DDLs but just show them"`
Export bool `long:"export" description:"Just dump the current schema to stdout"`
SkipDrop bool `long:"skip-drop" description:"Not make destructive changes such as Drop"`
SkipDrop bool `long:"skip-drop" description:"Skip destructive changes such as DROP"`
Help bool `long:"help" description:"Show this help"`
}

Expand Down
2 changes: 1 addition & 1 deletion cmd/psqldef/psqldef.go
Expand Up @@ -25,7 +25,7 @@ func parseOptions(args []string) (adapter.Config, *sqldef.Options) {
File string `short:"f" long:"file" description:"Read schema SQL from the file, rather than stdin" value-name:"filename" default:"-"`
DryRun bool `long:"dry-run" description:"Don't run DDLs but just show them"`
Export bool `long:"export" description:"Just dump the current schema to stdout"`
SkipDrop bool `long:"skip-drop" description:"Not make destructive changes such as Drop"`
SkipDrop bool `long:"skip-drop" description:"Skip destructive changes such as DROP"`
Help bool `long:"help" description:"Show this help"`
}

Expand Down

0 comments on commit 8b20f5d

Please sign in to comment.