Add custom role creation to kaehmy form
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11 on 2017-10-11 17:20
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('webapp', '0019_kaehmymessage_timestamp'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='kaehmyform',
|
||||
name='custom_role_is_board',
|
||||
field=models.BooleanField(default=False, verbose_name='Board member'),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='kaehmyform',
|
||||
name='custom_role_name',
|
||||
field=models.CharField(default='', max_length=255, verbose_name='Custom role name'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user