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.
37 lines
1.5 KiB
37 lines
1.5 KiB
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-12-07 09:13
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
import mptt.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('work_sell', '0021_auto_20161207_1210'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='worksell',
|
|
name='building_classification',
|
|
field=mptt.fields.TreeForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='work_sells', to='projects.BuildingClassfication'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='worksell',
|
|
name='construction_type',
|
|
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='work_sells', to='projects.ConstructionType'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='worksell',
|
|
name='location',
|
|
field=mptt.fields.TreeForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='work_sells', to='common.Location'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='worksell',
|
|
name='specialization',
|
|
field=mptt.fields.TreeForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, related_name='work_sells', to='specializations.Specialization'),
|
|
),
|
|
]
|
|
|