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.
37 lines
1.3 KiB
37 lines
1.3 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-07-25 13:05
|
|
from __future__ import unicode_literals
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
from django.utils.timezone import utc
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('projects', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='stage',
|
|
name='created',
|
|
field=models.DateTimeField(default=datetime.datetime(2016, 7, 25, 13, 5, 40, 39347, tzinfo=utc)),
|
|
),
|
|
migrations.AddField(
|
|
model_name='stage',
|
|
name='pos',
|
|
field=models.IntegerField(blank=True, default=0, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='stage',
|
|
name='status',
|
|
field=models.CharField(choices=[('not_agreed', 'Не согласован'), ('in_process', 'В процессе'), ('completed', 'Завершен')], default='not_agreed', max_length=30),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='project',
|
|
name='deal_type',
|
|
field=models.CharField(choices=[('secure_deal', 'Безопасная сделка'), ('direct_payment', 'Прямая оплата')], default='secure_deal', max_length=20),
|
|
),
|
|
]
|
|
|