Migrations & Deployment in Supabase
From the Supabase cheat sheet ยท Migration & Deployment ยท verified Jul 2026
Migrations & Deployment
Managing schema changes and deployments
bash
# Create migration
supabase migration new add_users_table
# Apply migrations
supabase db push
# Generate types
supabase gen types typescript --project-id <id> > types.ts
# Deploy to production
supabase link --project-ref <ref>
supabase db push๐ Version control for database schema
๐ Safe migration deployment process
๐ฟ Branch previews for testing
โก Automatic TypeScript type generation