Skip to content
Snippets Groups Projects
Commit afac5902 authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Add migration

parent 6bf1b552
No related branches found
No related tags found
1 merge request!34Allow sending info mailings to retracted or only checked-in people
Pipeline #78356 failed
# Generated by Django 3.2.13 on 2022-07-08 20:54
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('paweljong', '0021_checkpoint'),
]
operations = [
migrations.AddField(
model_name='infomailing',
name='send_to_not_checked_in',
field=models.BooleanField(default=True, verbose_name='Send to participants who did not check in'),
),
migrations.AddField(
model_name='infomailing',
name='send_to_retracted',
field=models.BooleanField(default=False, verbose_name='Send to participants who retracted'),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment