apply_migration
Apply a SQL migration script and record it in the supabase_migrations.schema_migrations table within a transaction, ensuring atomic schema updates on Aliyun RDS Supabase.
Instructions
Applies a SQL migration script and records it in the supabase_migrations.schema_migrations table within a transaction. Requires direct database connection (DATABASE_URL).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| sql | Yes | The SQL DDL content of the migration. | |
| name | No | An optional descriptive name for the migration. | |
| version | Yes | The migration version string (e.g., '20240101120000'). |