set_readonly
Control database access by enabling or disabling read-only mode for MySQL databases to restrict write operations or allow updates as needed.
Instructions
Enable or disable read-only mode
Input Schema
Name | Required | Description | Default |
---|---|---|---|
readonly | Yes | Set to true to enable read-only mode, false to disable |
Input Schema (JSON Schema)
{
"properties": {
"readonly": {
"description": "Set to true to enable read-only mode, false to disable",
"type": "boolean"
}
},
"required": [
"readonly"
],
"type": "object"
}