ssb: Let's make sure these are never null again.
All checks were successful
Build Tilde Friends / Build-All (push) Successful in 29m23s

This commit is contained in:
Cory McWilliams 2025-03-22 22:17:03 -04:00
parent 4b1643bc47
commit b135ea17f6

View File

@ -139,8 +139,8 @@ void tf_ssb_db_init(tf_ssb_t* ssb)
_tf_ssb_db_exec(db,
"CREATE TABLE IF NOT EXISTS messages_stats ("
" author TEXT PRIMARY KEY,"
" max_sequence INTEGER,"
" max_timestamp REAL"
" max_sequence INTEGER NOT NULL,"
" max_timestamp REAL NOT NULL"
")");
_tf_ssb_db_exec(
db, "INSERT OR REPLACE INTO messages_stats (author, max_sequence, max_timestamp) SELECT author, MAX(sequence), MAX(timestamp) FROM messages GROUP BY author");