tables_db_increment_row_column
Increase a numeric value in a specific database table cell by a specified amount. Use this tool to update counters, track metrics, or modify numerical data in Appwrite databases.
Instructions
Increment a specific column of a row by a given value.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| database_id | Yes | Database ID. | |
| table_id | Yes | Table ID. | |
| row_id | Yes | Row ID. | |
| column | Yes | Column key. | |
| value | No | Value to increment the column by. The value must be a number. | |
| max | No | Maximum value for the column. If the current value is greater than this value, an error will be thrown. | |
| transaction_id | No | Transaction ID for staging the operation. |