From 2db59131a89b422cd4b14a0a34d33165125b4334 Mon Sep 17 00:00:00 2001 From: Kuroshini Date: Tue, 4 Feb 2020 18:20:17 +0300 Subject: [PATCH] migration for team --- .../migrations/0035_userrole_for_team.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 apps/account/migrations/0035_userrole_for_team.py diff --git a/apps/account/migrations/0035_userrole_for_team.py b/apps/account/migrations/0035_userrole_for_team.py new file mode 100644 index 00000000..95d784ef --- /dev/null +++ b/apps/account/migrations/0035_userrole_for_team.py @@ -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'), + ), + ]