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
601 B
22 lines
601 B
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9.7 on 2016-07-20 10:27
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
import mptt.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('specializations', '0002_auto_20160602_1203'),
|
|
('users', '0021_contractorresumefiles_resume'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='team',
|
|
name='specializations',
|
|
field=mptt.fields.TreeManyToManyField(blank=True, related_name='teams', to='specializations.Specialization'),
|
|
),
|
|
]
|
|
|