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.
38 lines
1.2 KiB
38 lines
1.2 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-10-14 20:49
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('projects', '0046_merge'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name='buildingclassfication',
|
|
options={'ordering': ['order'], 'verbose_name': 'Тип здания', 'verbose_name_plural': 'Типы зданий'},
|
|
),
|
|
migrations.AlterModelOptions(
|
|
name='constructiontype',
|
|
options={'ordering': ['order'], 'verbose_name': 'Вид строительства', 'verbose_name_plural': 'Виды строительства'},
|
|
),
|
|
migrations.AlterModelManagers(
|
|
name='buildingclassfication',
|
|
managers=[
|
|
],
|
|
),
|
|
migrations.AddField(
|
|
model_name='buildingclassfication',
|
|
name='order',
|
|
field=models.PositiveSmallIntegerField(default=0, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='constructiontype',
|
|
name='order',
|
|
field=models.PositiveSmallIntegerField(default=0, null=True),
|
|
),
|
|
]
|
|
|