quantumtaskai-caprover/agents/migrations/0005_auto_20250804_1105.py
thecyberlearn b0e8c917ef Initial clean CapRover deployment - no secrets
Complete Django AI agent marketplace with security optimizations
and clean deployment documentation without any API keys or secrets.

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-09-04 10:50:55 +05:30

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),
]