You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
811 B
27 lines
811 B
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import models, migrations
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('store', '0016_auto_20150612_1250'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='orderdata',
|
|
name='created',
|
|
field=models.DateTimeField(auto_now_add=True, verbose_name='Дата и время', default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='orderdata',
|
|
name='edited',
|
|
field=models.DateTimeField(verbose_name='Изменено', auto_now=True, default=django.utils.timezone.now),
|
|
preserve_default=False,
|
|
),
|
|
]
|
|
|