delete_collection
Remove a collection from PocketBase by specifying its name or ID. This tool helps manage database structure by eliminating unwanted collections and their associated data.
Instructions
Delete a collection from PocketBase
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collection | Yes | Collection name or ID to delete |
Input Schema (JSON Schema)
{
"properties": {
"collection": {
"description": "Collection name or ID to delete",
"type": "string"
}
},
"required": [
"collection"
],
"type": "object"
}