apply_migration
Apply a specific migration file to update or modify the schema structure in PocketBase databases. Requires the migration file name to execute.
Instructions
Apply a specific migration file.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
migrationFile | Yes | Name of the migration file to apply. |
Input Schema (JSON Schema)
{
"properties": {
"migrationFile": {
"description": "Name of the migration file to apply.",
"type": "string"
}
},
"required": [
"migrationFile"
],
"type": "object"
}