command_responses
1 row where custom_command_id = 2
This data as json, CSV (advanced)
Suggested facets: created_at (date)
| id ▼ | custom_command_id | response_text | created_at |
|---|---|---|---|
| 1 | 2 2 | https://pic.jpri.top/i/2024/03/09/s9y2v.png | 2025-06-07 05:45:31 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE command_responses (
id INTEGER PRIMARY KEY AUTOINCREMENT,
custom_command_id INTEGER NOT NULL,
response_text TEXT NOT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY (custom_command_id) REFERENCES custom_commands(id)
);