forked from uncloud/uncloud
23 lines
605 B
Python
23 lines
605 B
Python
# Generated by Django 3.2.4 on 2021-08-17 11:29
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('uncloud_pay', '0028_bill_currency'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name='pricingplan',
|
|
old_name='storage_unit_price',
|
|
new_name='storage_hd_unit_price',
|
|
),
|
|
migrations.AddField(
|
|
model_name='pricingplan',
|
|
name='storage_ssd_unit_price',
|
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7),
|
|
),
|
|
]
|