24 lines
637 B
Python
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)),
|
|
),
|
|
]
|