 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>
		
			
				
	
	
		
			8 lines
		
	
	
		
			325 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			325 B
		
	
	
	
		
			SQL
		
	
	
	
	
	
| -- Allow council agent assignments to record SQL-level state transitions
 | |
| ALTER TABLE council_agents
 | |
|     DROP CONSTRAINT IF EXISTS council_agents_status_check;
 | |
| 
 | |
| ALTER TABLE council_agents
 | |
|     ADD CONSTRAINT council_agents_status_check
 | |
|     CHECK (status IN ('pending', 'deploying', 'assigned', 'active', 'failed', 'removed'));
 |