这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/commands/migrate_apply.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ func newMigrateApplyCmd(ec *cli.ExecutionContext) *cobra.Command {

f.StringVar(&opts.upMigration, "up", "", "apply all or N up migration steps")
f.StringVar(&opts.downMigration, "down", "", "apply all or N down migration steps")
f.StringVar(&opts.versionMigration, "version", "", "migrate the database to a specific version")
f.StringVar(&opts.versionMigration, "version", "", "only apply this particular migration")
f.StringVar(&opts.migrationType, "type", "up", "type of migration (up, down) to be used with version flag")
f.BoolVar(&opts.skipExecution, "skip-execution", false, "skip executing the migration action, but mark them as applied")

Expand Down
2 changes: 1 addition & 1 deletion cli/commands/update-cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ func (o *updateOptions) run(showPrompt bool) error {
if showPrompt {
ok := ask2confirm(latestVersion.String(), o.EC.Logger)
if !ok {
o.EC.Logger.Info("skippig update, run 'hasura update-cli' to update manually")
o.EC.Logger.Info("skipping update, run 'hasura update-cli' to update manually")
return nil
}
}
Expand Down