20 lines
463 B
Python
20 lines
463 B
Python
# Generated by Django 4.1.1 on 2022-09-28 08:47
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('order', '0013_alter_order_date_end_alter_order_date_start'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='order',
|
|
name='create_time',
|
|
field=models.DateTimeField(default=datetime.datetime.now, editable=False),
|
|
),
|
|
]
|