Skip to content
Merged
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 cmd/pg-schema-diff/apply_cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ func buildApplyCmd() *cobra.Command {
allowedHazardsTypesStrs := cmd.Flags().StringSlice("allow-hazards", nil,
"Specify the hazards that are allowed. Order does not matter, and duplicates are ignored. If the"+
" migration plan contains unwanted hazards (hazards not in this list), then the migration will fail to run"+
" (example: --allowed-hazards DELETES_DATA,INDEX_BUILD)")
" (example: --allow-hazards DELETES_DATA,INDEX_BUILD)")
skipConfirmPrompt := cmd.Flags().Bool("skip-confirm-prompt", false, "Skips prompt asking for user to confirm before applying")
cmd.RunE = func(cmd *cobra.Command, args []string) error {
logger := log.SimpleLogger()
Expand Down
Loading