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.
47 lines
1.9 KiB
47 lines
1.9 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-12-01 17:03
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import mptt.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('projects', '0047_auto_20161014_2349'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='realty',
|
|
name='is_virtual',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='portfolio',
|
|
name='work_type',
|
|
field=models.IntegerField(choices=[(403, 'Проектирование777'), (87, 'Техническое сопровождение666')], default=1),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='project',
|
|
name='term_type',
|
|
field=models.CharField(choices=[('day', 'день'), ('hour', 'час'), ('month', 'месяц'), ('project', 'проект')], default='day', max_length=20),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='project',
|
|
name='work_type',
|
|
field=models.IntegerField(choices=[(403, 'Проектирование777'), (87, 'Техническое сопровождение666')], default=1),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='realty',
|
|
name='building_classification',
|
|
field=mptt.fields.TreeForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='realties', to='projects.BuildingClassfication'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='realty',
|
|
name='construction_type',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='realties', to='projects.ConstructionType'),
|
|
),
|
|
]
|
|
|