Merge branch 'setup' of https://bitbucket.org/PekopT/archilance into setup
commit
2ba5f23c4f
8 changed files with 85 additions and 24 deletions
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-05 07:09 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('projects', '0013_auto_20160803_2003'), |
||||
('projects', '0014_auto_20160804_1754'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,16 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-05 07:09 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.db import migrations |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('users', '0004_user_contractor_rating'), |
||||
('users', '0004_team_avatar'), |
||||
] |
||||
|
||||
operations = [ |
||||
] |
||||
@ -0,0 +1,25 @@ |
||||
# -*- coding: utf-8 -*- |
||||
# Generated by Django 1.9.7 on 2016-08-05 11:42 |
||||
from __future__ import unicode_literals |
||||
|
||||
from django.conf import settings |
||||
from django.db import migrations, models |
||||
|
||||
|
||||
class Migration(migrations.Migration): |
||||
|
||||
dependencies = [ |
||||
('users', '0005_merge'), |
||||
] |
||||
|
||||
operations = [ |
||||
migrations.RemoveField( |
||||
model_name='team', |
||||
name='users', |
||||
), |
||||
migrations.AddField( |
||||
model_name='team', |
||||
name='contractors', |
||||
field=models.ManyToManyField(blank=True, related_name='teams', to=settings.AUTH_USER_MODEL), |
||||
), |
||||
] |
||||
Loading…
Reference in new issue