uncloud/uncloud_vm/migrations/0004_auto_20210414_1048.py
PCoder f02f15f09b First pass at the add-opennebula-vm-orders management command
Command executes but still does not create bills
2021-04-14 17:02:45 +05:30

24 lines
637 B
Python

# Generated by Django 3.1.4 on 2021-04-14 10:48
import datetime
from django.db import migrations, models
from django.utils.timezone import utc
class Migration(migrations.Migration):
dependencies = [
('uncloud_vm', '0003_vmproduct_created_order_at'),
]
operations = [
migrations.RemoveField(
model_name='vmproduct',
name='created_order_at',
),
migrations.AddField(
model_name='vmproduct',
name='create_order_at',
field=models.DateTimeField(default=datetime.datetime(2021, 4, 14, 10, 48, 6, 641056, tzinfo=utc)),
),
]