apply_all_migrations
Execute all pending database migrations to update schemas and ensure data consistency in PocketBase MCP Server.
Instructions
Apply all pending migrations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
appliedMigrations | No | Array of already applied migration filenames. |
Input Schema (JSON Schema)
{
"properties": {
"appliedMigrations": {
"description": "Array of already applied migration filenames.",
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}