//! 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 `drop_table` tool.
#[derive(Debug, Default, Deserialize, JsonSchema)]pubstructDropTableRequest{/// The database containing the table. Required. Use `list_databases` first to see available databases.
pubdatabase_name: String,
/// Name of the table to drop. Must contain only alphanumeric characters and underscores.
pubtable_name: String,
}