You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
658 B
Python
26 lines
658 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11 on 2021-09-24 09:55
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('members', '0007_auto_20200924_1512'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='member',
|
|
name='active',
|
|
field=models.BooleanField(default=True, verbose_name='Active'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='member',
|
|
name='not_waiting',
|
|
field=models.BooleanField(default=True, verbose_name='Not waiting'),
|
|
),
|
|
]
|