command_responses
2 rows where custom_command_id = 11
This data as json, CSV (advanced)
Suggested facets: created_at (date)
| id ▼ | custom_command_id | response_text | created_at |
|---|---|---|---|
| 22 | 11 11 | 咪趴都已經消失了,你們還要繼續鞭屍嗎??? | 2025-06-08 04:01:41 |
| 23 | 11 11 | 這個名子被鏈鋸人吃掉了 | 2025-06-08 04:01:53 |
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)
);