add missing migration for team users field
This commit is contained in:
parent
e620f9298d
commit
8f9c168654
1 changed files with 20 additions and 0 deletions
20
accounts/migrations/0005_auto_20150504_1854.py
Normal file
20
accounts/migrations/0005_auto_20150504_1854.py
Normal file
|
@ -0,0 +1,20 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import models, migrations
|
||||
from django.conf import settings
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('accounts', '0004_auto_20150412_1319'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='team',
|
||||
name='users',
|
||||
field=models.ManyToManyField(to=settings.AUTH_USER_MODEL, blank=True, related_name='teams+'),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue