command_responses
1 row where custom_command_id = 4
This data as json, CSV (advanced)
Suggested facets: created_at (date)
| id ▼ | custom_command_id | response_text | created_at |
|---|---|---|---|
| 12 | 4 4 | https://i.imgur.com/zusR6R8.gif | 2025-06-08 03:52:59 |
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)
);