quantum-ai-v2/agents
Claude f10a097d9c 🔧 Fix Railway migration DuplicateColumn error with smart column check
## Migration Fix for Railway Database
- Railway PostgreSQL already has access_url_name/display_url_name columns
- Previous migration tried to add existing columns → DuplicateColumn error
- New migration checks if columns exist before adding them

## Smart Migration Logic
 Check information_schema for existing columns
 Add columns only if they don't exist
 Skip if columns already present (Railway case)
 Works for both fresh and existing databases

## Error Fixed
 Was: column 'access_url_name' of relation 'agents_agent' already exists
 Now: Migration succeeds regardless of existing schema state

## Result
- Railway deployment will complete successfully
- populate_agents will run and create all 5 agents
- Marketplace will show agents again

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-08-04 16:20:52 +05:30
..
management 🗃️ Implement complete Railway database recreation 2025-08-03 14:57:49 +05:30
migrations 🔧 Fix Railway migration DuplicateColumn error with smart column check 2025-08-04 16:20:52 +05:30
templates/agents 🔧 Fix payment message persistence and add expired session popup 2025-08-03 20:57:27 +05:30
__init__.py 🚀 Complete agents app implementation with social ads frontend 2025-07-31 19:05:09 +05:30
admin.py 💬 Implement complete chat-based agent system with 5 Whys Analysis 2025-08-01 09:39:43 +05:30
apps.py 🚀 Complete agents app implementation with social ads frontend 2025-07-31 19:05:09 +05:30
models.py 🎉 Complete 5 Whys agent enhancements with session management and UI improvements 2025-08-03 13:28:39 +05:30
serializers.py 🚀 Complete agents app implementation with social ads frontend 2025-07-31 19:05:09 +05:30
tests.py 🚀 Complete agents app implementation with social ads frontend 2025-07-31 19:05:09 +05:30
urls.py 🎉 Complete 5 Whys agent enhancements with session management and UI improvements 2025-08-03 13:28:39 +05:30
views.py 🔧 Fix payment message persistence and add expired session popup 2025-08-03 20:57:27 +05:30