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.
22 lines
606 B
22 lines
606 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.6 on 2016-06-30 15:46
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
import django.db.models.deletion
|
|
import mptt.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('projects', '0035_auto_20160630_1635'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='project',
|
|
name='specialization',
|
|
field=mptt.fields.TreeForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='projects', to='specializations.Specialization'),
|
|
),
|
|
]
|
|
|