| 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 | sqlite> .exit |
| 14 | $ thelounge -v |
| 15 | v4.4.3 |
| 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 |