quantumtaskai-caprover/wallet/migrations/0002_wallettransaction_stripe_payment_intent_id.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

19 lines
437 B
Python

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