quantum-ai-v3/data_analyzer/migrations/0002_auto_20250710_0431.py
Claude 8109c6a693 🔧 Fix migration conflict - prevent duplicate column errors
- Convert migration 0002 to no-op to prevent 'data_file column already exists' error
- Fields already exist in Railway PostgreSQL database
- Allows clean deployment without migration conflicts

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-26 20:19:30 +05:30

16 lines
405 B
Python

# Generated by Django 5.2.4 on 2025-07-10 04:31
# Modified to prevent duplicate column errors
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('data_analyzer', '0001_initial'),
]
operations = [
# No operations - fields already exist in database
# This prevents "column already exists" errors during deployment
]