command_responses
1 row where custom_command_id = 12
This data as json, CSV (advanced)
Suggested facets: created_at (date)
| id ▼ | custom_command_id | response_text | created_at |
|---|---|---|---|
| 24 | 12 12 | 老孫叫我加這條的,找他 | 2025-06-08 04:02:34 |
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)
);