forked from uncloud/uncloud
18 lines
409 B
Python
18 lines
409 B
Python
# Generated by Django 3.1 on 2020-09-28 20:42
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_pay', '0025_billrecord_is_recurring_record'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='order',
|
|
name='should_be_billed',
|
|
field=models.BooleanField(default=True),
|
|
),
|
|
]
|