core-agent-ide/codex-rs/state/migrations
jif-oai 4922b3e571
feat: add phase 1 mem db (#10634)
- Schema: thread_id (PK, FK to threads.id with cascade delete),
trace_summary, memory_summary, updated_at.
- Migration: creates the table and an index on (updated_at DESC,
thread_id DESC) for efficient recent-first reads.
  - Runtime API (DB-only):
      - `get_thread_memory(thread_id)`: fetch one memory row.
- `upsert_thread_memory(thread_id, trace_summary, memory_summary)`:
insert/update by thread id and always advance updated_at.
- `get_last_n_thread_memories_for_cwd(cwd, n)`: join thread_memory with
threads and return newest n rows for an exact cwd match.
- Model layer: introduced ThreadMemory and row conversion types to keep
query decoding typed and consistent with existing state models.
2026-02-04 21:38:39 +00:00
..
0001_threads.sql feat: sqlite 1 (#10004) 2026-01-28 15:29:14 +01:00
0002_logs.sql chore: unify log queries (#10152) 2026-01-29 16:28:15 +00:00
0003_logs_thread_id.sql chore: unify log queries (#10152) 2026-01-29 16:28:15 +00:00
0004_thread_dynamic_tools.sql [feat] persist thread_dynamic_tools in db (#10252) 2026-02-03 00:06:44 +00:00
0006_thread_memory.sql feat: add phase 1 mem db (#10634) 2026-02-04 21:38:39 +00:00