shell
· 344 B · Bash
Raw
$ sqlite3 swee.sqlite3
SQLite version 3.50.4 2025-07-30 19:33:53
Enter ".help" for usage hints.
sqlite> .tables
messages migrations options rollback_steps
sqlite> PRAGMA table_info(messages);
0|id|INTEGER|0||1
1|network|TEXT|0||0
2|channel|TEXT|0||0
3|time|INTEGER|0||0
4|type|TEXT|0||0
5|msg|TEXT|0||0
$ thelounge -v
v4.4.3
| 1 | $ sqlite3 swee.sqlite3 |
| 2 | SQLite version 3.50.4 2025-07-30 19:33:53 |
| 3 | Enter ".help" for usage hints. |
| 4 | sqlite> .tables |
| 5 | messages migrations options rollback_steps |
| 6 | sqlite> PRAGMA table_info(messages); |
| 7 | 0|id|INTEGER|0||1 |
| 8 | 1|network|TEXT|0||0 |
| 9 | 2|channel|TEXT|0||0 |
| 10 | 3|time|INTEGER|0||0 |
| 11 | 4|type|TEXT|0||0 |
| 12 | 5|msg|TEXT|0||0 |
| 13 | $ thelounge -v |
| 14 | v4.4.3 |
the_error
· 299 B · Text
Raw
Jan 31 11:04:17 thelounge daemon[80436]: node:internal/process/promises:394 triggerUncaughtException(err, true /* fromPromise */); ^ [Error: SQLITE_ERROR: no such column: "message" - should this be a string literal in single-quotes?] { errno: 1, code: 'SQLITE_ERROR' } Node.js v24.12.0
| 1 | Jan 31 11:04:17 thelounge daemon[80436]: node:internal/process/promises:394 triggerUncaughtException(err, true /* fromPromise */); ^ [Error: SQLITE_ERROR: no such column: "message" - should this be a string literal in single-quotes?] { errno: 1, code: 'SQLITE_ERROR' } Node.js v24.12.0 |