23 lines
765 B
Python
23 lines
765 B
Python
# Generated by Django 3.2.4 on 2021-07-30 14:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_pay', '0023_auto_20210730_1342'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='payment',
|
|
name='source',
|
|
field=models.CharField(blank=True, choices=[('wire', 'Wire Transfer'), ('stripe', 'Stripe'), ('voucher', 'Voucher'), ('referral', 'Referral')], max_length=256, null=True),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='payment',
|
|
name='type',
|
|
field=models.CharField(choices=[('withdraw', 'Withdraw Money'), ('deposit', 'Deposit Money')], default='send', max_length=256),
|
|
),
|
|
]
|