delete_collection
Remove a specific collection from a PocketBase database by specifying its ID or name. Designed for admin use, this tool simplifies database schema management and cleanup.
Instructions
Delete a collection from PocketBase (admin only)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionIdOrName | Yes | ID or name of the collection to delete |
Input Schema (JSON Schema)
{
"properties": {
"collectionIdOrName": {
"description": "ID or name of the collection to delete",
"type": "string"
}
},
"required": [
"collectionIdOrName"
],
"type": "object"
}