create_migration_with_rollback
Create database migrations with forward and backward SQL scripts to implement changes safely and enable reliable rollback capabilities.
Instructions
Create a migration with both up and down SQL for safe rollbacks
Input Schema
TableJSON 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 |