suggest_schema_optimizations
Analyze database schema to identify performance improvements such as missing or redundant indexes for Cloudflare D1 optimization.
Instructions
Analyze schema and suggest performance optimizations (missing indexes, redundant indexes, etc.)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environment | Yes | Database environment to analyze for optimizations |
Input Schema (JSON Schema)
{
"properties": {
"environment": {
"description": "Database environment to analyze for optimizations",
"enum": [
"development",
"staging",
"production"
],
"type": "string"
}
},
"required": [
"environment"
],
"type": "object"
}