Complete the command to rollback the last migration in Supabase CLI.
supabase migration [1]The rollback command undoes the last applied migration in Supabase.
Complete the command to rollback migrations by specifying the number of steps.
supabase migration rollback --steps [1]Using --steps 1 rolls back the last migration step.
Fix the error in the command to rollback migrations by adding the missing flag.
supabase migration rollback [1] 2
The correct flag to specify how many migrations to rollback is --steps.
Fill both blanks to rollback migrations and confirm the action automatically.
supabase migration rollback [1] 1 [2]
Use --steps to specify how many migrations to rollback and --force to skip confirmation prompts.
Fill all three blanks to rollback two migrations quietly and specify the project directory.
supabase migration rollback [1] 2 [2] --project-dir [3]
Use --steps to set rollback count, --force to skip confirmation, and --project-dir to specify the project folder path.