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.
30 lines
1.0 KiB
30 lines
1.0 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.6 on 2016-06-30 13:35
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('projects', '0034_auto_20160622_1200'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='buildingclassfication',
|
|
options={'verbose_name': 'Тип здания', 'verbose_name_plural': 'Типы зданий'},
|
|
),
|
|
migrations.AlterField(
|
|
model_name='project',
|
|
name='work_type',
|
|
field=models.IntegerField(choices=[(1, 'Проектирование'), (2, 'Техническое сопровождение')], default=1),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='projectfile',
|
|
name='project',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='files', to='projects.Project'),
|
|
),
|
|
]
|
|
|