parent
813ca37ec1
commit
53bb1fd0d4
7 changed files with 93 additions and 21 deletions
@ -0,0 +1,30 @@ |
|||||||
|
# -*- 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'), |
||||||
|
), |
||||||
|
] |
||||||
Loading…
Reference in new issue