diff --git a/data_analyzer/migrations/0005_alter_dataanalysisagentrequest_data_file.py b/data_analyzer/migrations/0005_alter_dataanalysisagentrequest_data_file.py new file mode 100644 index 0000000..c27226c --- /dev/null +++ b/data_analyzer/migrations/0005_alter_dataanalysisagentrequest_data_file.py @@ -0,0 +1,22 @@ +# 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/", + ), + ), + ] diff --git a/templates/400.html b/templates/400.html index 79a58f8..be07f92 100644 --- a/templates/400.html +++ b/templates/400.html @@ -90,7 +90,7 @@ -
+

🛠️ diff --git a/templates/403.html b/templates/403.html index 8c509c1..aef528c 100644 --- a/templates/403.html +++ b/templates/403.html @@ -76,7 +76,7 @@

-
+

🆘 diff --git a/templates/404.html b/templates/404.html index db886fb..fe06608 100644 --- a/templates/404.html +++ b/templates/404.html @@ -76,7 +76,7 @@

-
+

💡 diff --git a/templates/500.html b/templates/500.html index 44af1b3..501f859 100644 --- a/templates/500.html +++ b/templates/500.html @@ -69,7 +69,7 @@

-
+

📊 diff --git a/wallet/migrations/0002_wallettransaction_stripe_payment_intent_id.py b/wallet/migrations/0002_wallettransaction_stripe_payment_intent_id.py new file mode 100644 index 0000000..dd043fd --- /dev/null +++ b/wallet/migrations/0002_wallettransaction_stripe_payment_intent_id.py @@ -0,0 +1,18 @@ +# Generated by Django 5.2.4 on 2025-07-27 03:54 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ("wallet", "0001_initial"), + ] + + operations = [ + migrations.AddField( + model_name="wallettransaction", + name="stripe_payment_intent_id", + field=models.CharField(blank=True, default="", max_length=200, null=True), + ), + ]