mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
6 lines
196 B
SQL
6 lines
196 B
SQL
-- 0012_subagent_usage
|
|
-- Add usage JSONB column to subagents table for tracking cumulative token usage.
|
|
|
|
ALTER TABLE subagents ADD COLUMN IF NOT EXISTS usage JSONB NOT NULL DEFAULT '{}'::jsonb;
|
|
|