stop_migration
Stop an active database migration process to prevent further data transfer and maintain current database state.
Instructions
Stop an ongoing database migration.
Args: database_id: The database ID or label
Returns: Status message confirming migration stop
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| database_id | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "database_id": {
      "title": "Database Id",
      "type": "string"
    }
  },
  "required": [
    "database_id"
  ],
  "type": "object"
}