Complete the code to run migrations locally using Supabase CLI.
supabase db [1]The supabase db push command applies migrations locally to your development database.
Complete the code to deploy migrations remotely to Supabase cloud.
supabase db [1]The supabase db deploy command applies migrations to your remote Supabase database in the cloud.
Fix the error in the command to generate a new migration file.
supabase db [1] new_migrationThe correct command to create a new migration file is supabase db migration new_migration.
Fill both blanks to run migrations locally and then deploy remotely.
supabase db [1] && supabase db [2]
First, push applies migrations locally, then deploy sends them to the remote database.
Fill all three blanks to create a new migration, apply it locally, and deploy remotely.
supabase db [1] new_migration && supabase db [2] && supabase db [3]
Use migration to create a new migration file, push to apply it locally, and deploy to apply it remotely.