Skip to content

Commit

Permalink
Add missing migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
amakarudze committed Nov 7, 2024
1 parent 002ac61 commit 4f1f337
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 4f1f337

Please sign in to comment.