Skip to content

Commit

Permalink
Merge pull request #1049 from amakarudze/fix-stripe-issues
Browse files Browse the repository at this point in the history
Add missing migrations
  • Loading branch information
amakarudze authored Nov 7, 2024
2 parents 3048262 + 4f1f337 commit c5e8227
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions stripe_payments/migrations/0003_alter_stripecharge_charge_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.20 on 2024-11-07 00:03

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('stripe_payments', '0002_auto_20241106_2333'),
]

operations = [
migrations.AlterField(
model_name='stripecharge',
name='charge_id',
field=models.CharField(editable=False, max_length=255, unique=True),
),
]

0 comments on commit c5e8227

Please sign in to comment.