 9aeaa433fc
			
		
	
	9aeaa433fc
	
	
	
		
			
			- Changed NetworkName from 'chorus_default' to 'chorus_net' - This matches the actual network 'CHORUS_chorus_net' (service prefix added automatically) - Fixes discovered_count:0 issue - now successfully discovering all 25 agents - Updated IMPLEMENTATION-SUMMARY with deployment status Result: All 25 CHORUS agents now discovered successfully via Docker Swarm API 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			557 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			557 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| -- Add persona tracking fields for council agents and brief metadata for councils
 | |
| 
 | |
| ALTER TABLE council_agents
 | |
|     ADD COLUMN IF NOT EXISTS persona_status VARCHAR(50) NOT NULL DEFAULT 'pending',
 | |
|     ADD COLUMN IF NOT EXISTS persona_loaded_at TIMESTAMPTZ,
 | |
|     ADD COLUMN IF NOT EXISTS persona_ack_payload JSONB,
 | |
|     ADD COLUMN IF NOT EXISTS endpoint_url TEXT;
 | |
| 
 | |
| ALTER TABLE councils
 | |
|     ADD COLUMN IF NOT EXISTS brief_owner_role VARCHAR(100),
 | |
|     ADD COLUMN IF NOT EXISTS brief_dispatched_at TIMESTAMPTZ,
 | |
|     ADD COLUMN IF NOT EXISTS activation_payload JSONB;
 |