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.
21 lines
546 B
21 lines
546 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 mptt.fields
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0017_user_phone'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='user',
|
|
name='contractor_specializations',
|
|
field=mptt.fields.TreeManyToManyField(blank=True, related_name='contractors', to='specializations.Specialization'),
|
|
),
|
|
]
|
|
|