misc rooms endpoints, friends

This commit is contained in:
Devin Zuczek
2026-07-08 13:22:06 -04:00
parent 390843c679
commit a1d9fc17f0
22 changed files with 823 additions and 123 deletions
@@ -0,0 +1,6 @@
-- Rename the `rooms` table to `room`, matching the singular naming of the other
-- tables (`interaction`, `room_instance`). SQLite carries the generated columns
-- and the idx_rooms_* indexes over to the renamed table automatically, so this
-- is the whole change. SCHEMA_DDL in src/rooms-db.ts already creates `room`.
ALTER TABLE rooms RENAME TO room;