Add actor column to agent_events table with values: 'human', 'junior', 'system'. Default to 'junior' for existing rows.
Schema change:
ALTER TABLE agent_events ADD COLUMN actor TEXT NOT NULL DEFAULT 'junior';
Update insertAgentEvent to accept actor parameter.
No activity yet.