create_migration_with_rollback
Create a database migration with both up and down SQL statements, enabling safe rollbacks of schema changes.
Instructions
Create a migration with both up and down SQL for safe rollbacks
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Migration name | |
| up_sql | Yes | SQL to apply the migration | |
| down_sql | Yes | SQL to rollback the migration |