2020-03-05 15:24:45 +00:00
|
|
|
# Generated by Django 3.0.3 on 2020-03-05 15:24
|
2020-03-05 09:23:34 +00:00
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2020-03-05 15:24:45 +00:00
|
|
|
('uncloud_pay', '0001_initial'),
|
2020-03-05 09:23:34 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
2020-03-05 15:24:45 +00:00
|
|
|
migrations.RenameField(
|
|
|
|
model_name='paymentmethod',
|
|
|
|
old_name='stripe_card_id',
|
|
|
|
new_name='stripe_payment_method_id',
|
|
|
|
),
|
2020-03-05 09:23:34 +00:00
|
|
|
migrations.AddField(
|
|
|
|
model_name='paymentmethod',
|
|
|
|
name='stripe_setup_intent_id',
|
|
|
|
field=models.CharField(blank=True, max_length=32, null=True),
|
|
|
|
),
|
2020-03-05 15:24:45 +00:00
|
|
|
migrations.AlterUniqueTogether(
|
|
|
|
name='paymentmethod',
|
|
|
|
unique_together=set(),
|
2020-03-05 09:23:34 +00:00
|
|
|
),
|
|
|
|
]
|