()
| 15 | type StatusCommand struct{} |
| 16 | |
| 17 | func (*StatusCommand) Help() string { |
| 18 | helpText := ` |
| 19 | Usage: sql-migrate status [options] ... |
| 20 | |
| 21 | Show migration status. |
| 22 | |
| 23 | Options: |
| 24 | |
| 25 | -config=dbconfig.yml Configuration file to use. |
| 26 | -env="development" Environment. |
| 27 | |
| 28 | ` |
| 29 | return strings.TrimSpace(helpText) |
| 30 | } |
| 31 | |
| 32 | func (*StatusCommand) Synopsis() string { |
| 33 | return "Show migration status" |