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.
29 lines
876 B
29 lines
876 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-08-08 12:57
|
|
from __future__ import unicode_literals
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
from django.utils.timezone import utc
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('common', '0003_auto_20160729_1747'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='settings',
|
|
name='recalculation_rating_time',
|
|
field=models.TimeField(default=datetime.datetime(2016, 8, 8, 12, 57, 41, 160156, tzinfo=utc)),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name='settings',
|
|
name='recalculation_spec_time',
|
|
field=models.TimeField(default=datetime.datetime(2016, 8, 8, 12, 57, 52, 905906, tzinfo=utc)),
|
|
preserve_default=False,
|
|
),
|
|
]
|
|
|