forked from uncloud/uncloud
23 lines
595 B
Python
23 lines
595 B
Python
|
# Generated by Django 3.2.4 on 2021-08-19 13:04
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('uncloud_pay', '0030_pricingplan_monthly_maintenance_fees'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='bill',
|
||
|
name='is_closed',
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='bill',
|
||
|
name='status',
|
||
|
field=models.CharField(choices=[('new', 'New'), ('cancelled', 'Cancelled'), ('paid', 'Paid')], default='new', max_length=32),
|
||
|
),
|
||
|
]
|