//! MySQL/MariaDB-specific MCP tool request types.
//!//! These types omit PostgreSQL-only parameters like `cascade`.
usermcp::schemars;usermcp::schemars::JsonSchema;useserde::Deserialize;/// Request for the `dropTable` tool.
#[derive(Debug, Default, Deserialize, JsonSchema)]#[serde(rename_all ="camelCase")]pubstructDropTableRequest{/// The database containing the table. Required. Use `listDatabases` first to see available databases.
pubdatabase: String,
/// Name of the table to drop. Must contain only alphanumeric characters and underscores.
pubtable: String,
}