migration for team
This commit is contained in:
parent
c68d6ec148
commit
2db59131a8
18
apps/account/migrations/0035_userrole_for_team.py
Normal file
18
apps/account/migrations/0035_userrole_for_team.py
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 2.2.7 on 2020-02-04 15:19
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('account', '0034_auto_20200131_0548'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='userrole',
|
||||||
|
name='for_team',
|
||||||
|
field=models.BooleanField(default=False, verbose_name='is this role for team membership'),
|
||||||
|
),
|
||||||
|
]
|
||||||
Loading…
Reference in New Issue
Block a user