Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
(cherry picked from commit 9669daf)
  • Loading branch information
czue committed Apr 17, 2024
1 parent b829bca commit adeea84
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions djstripe/migrations/0013_alter_paymentintent_capture_method.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Generated by Django 5.0.3 on 2024-04-17 11:03

import djstripe.enums
import djstripe.fields
from django.db import migrations


class Migration(migrations.Migration):
dependencies = [
("djstripe", "0012_2_8"),
]

operations = [
migrations.AlterField(
model_name="paymentintent",
name="capture_method",
field=djstripe.fields.StripeEnumField(
enum=djstripe.enums.CaptureMethod, max_length=15
),
),
]

0 comments on commit adeea84

Please sign in to comment.