24 lines
676 B
Python
24 lines
676 B
Python
|
# Generated by Django 3.2.4 on 2021-06-30 07:42
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('uncloud_pay', '0011_auto_20210101_1308'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='billingaddress',
|
||
|
name='vat_number_verified',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='payment',
|
||
|
name='source',
|
||
|
field=models.CharField(choices=[('wire', 'Wire Transfer'), ('stripe', 'Stripe'), ('voucher', 'Voucher'), ('referral', 'Referral')], max_length=256),
|
||
|
),
|
||
|
]
|