mirror of
https://github.com/thecyberlearn/quantum-ai-v3.git
synced 2026-08-18 14:52:58 +00:00
- Add missing stripe_payment_intent_id field to WalletTransaction model - Create and apply database migration for wallet schema fix - Fix vertical alignment of help widgets on all error pages (400, 403, 404, 500) - Add margin-left: auto to align help widgets with wallet card above - Include data_analyzer migration for file field optimization 🚀 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
23 lines
546 B
Python
23 lines
546 B
Python
# Generated by Django 5.2.4 on 2025-07-27 03:55
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("data_analyzer", "0004_fix_duplicate_fields"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="dataanalysisagentrequest",
|
|
name="data_file",
|
|
field=models.FileField(
|
|
blank=True,
|
|
help_text="PDF file for analysis",
|
|
upload_to="uploads/data_analyzer/",
|
|
),
|
|
),
|
|
]
|