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.
28 lines
1009 B
28 lines
1009 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.6 on 2016-06-10 09:04
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('projects', '0025_auto_20160609_1916'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='projectfile',
|
|
options={'verbose_name': 'Файл проекта', 'verbose_name_plural': 'Файлы проектов'},
|
|
),
|
|
migrations.RemoveField(
|
|
model_name='project',
|
|
name='secure_deal',
|
|
),
|
|
migrations.AddField(
|
|
model_name='project',
|
|
name='deal_type',
|
|
field=models.CharField(choices=[('secure_deal', 'Безопасная сделка (с резервированием бюджета) '), ('direct_payment', 'Прямая оплата Исполнителю на его кошелек/счет')], default='secure_deal', max_length=20),
|
|
),
|
|
]
|
|
|