Complete the code to create a new migration file with a version number.
supabase migration new [1]The migration file name usually starts with a version number like '001_init' to track schema changes in order.
Complete the sentence: Migrations version your database schema to {{BLANK_1}} changes safely.
Migrations version your database schema to [1] changes safely.Versioning helps track changes so you know what was changed and when.
Fix the error in this explanation: 'Migrations version your schema so you can {{BLANK_1}} to any previous state easily.'
Migrations version your schema so you can [1] to any previous state easily.Rollback means going back to a previous version safely, which is a key benefit of versioned migrations.
Fill both blanks to explain why migrations version your schema: 'Versioning helps {{BLANK_1}} conflicts and {{BLANK_2}} collaboration.'
Versioning helps [1] conflicts and [2] collaboration.
Versioning prevents conflicts by tracking changes and enables collaboration by letting multiple people work safely.
Fill all three blanks to complete the migration benefits: 'Migrations {{BLANK_1}} schema changes, {{BLANK_2}} safe rollbacks, and {{BLANK_3}} team coordination.'
Migrations [1] schema changes, [2] safe rollbacks, and [3] team coordination.
Migrations track changes, allow safe rollbacks, and improve team coordination by keeping everyone in sync.