mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 16:12:57 +00:00
## Critical Model/Database Sync Fix **Problem**: Railway database has access_url_name/display_url_name columns but Django model didn't define them. **Solution**: ✅ Add missing fields to Agent model with proper Django field definitions ✅ Create fake migration to sync with existing Railway database schema ✅ Avoid DuplicateColumn errors on Railway deployment ## Changes Made **Agent Model** (): - Added - Added **Migration** (): - Fake migration that does nothing (columns already exist on Railway) - Marks migration as applied without attempting to create existing columns ## Error Fixed ❌ Was: Invalid field name(s) for model Agent: 'access_url_name', 'display_url_name' ✅ Now: Model defines fields that match existing Railway database columns ## Result - Django model matches Railway PostgreSQL schema - Agent creation commands will work (fields are now valid) - populate_agents will succeed and create all 5 agents - Railway marketplace will finally show agents 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
596 B
Python
24 lines
596 B
Python
# Generated by Django 5.2.4 on 2025-08-04 11:05
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
def fake_migration(apps, schema_editor):
|
|
"""
|
|
Fake migration - Railway database already has access_url_name and display_url_name columns
|
|
but Django model didn't have them defined. Now model has fields, so we just need to
|
|
mark this migration as applied without doing anything.
|
|
"""
|
|
pass
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("agents", "0004_add_message_limit"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(fake_migration, fake_migration),
|
|
]
|