mirror of
https://github.com/thecyberlearn/quantum-ai-v2.git
synced 2026-08-18 22:32:59 +00:00
- 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>
16 lines
405 B
Python
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
|
|
] |