Adjusted the meeting attendees migration to match the updated model.

- Legacy-Id: 14932
This commit is contained in:
Henrik Levkowetz 2018-03-26 13:11:56 +00:00
parent 047376becf
commit 2b4011c34b

View file

@ -15,6 +15,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='meeting',
name='attendees',
field=models.IntegerField(blank=True, default=0, help_text='Number of Attendees for backfilled meetings, leave it to 0 for new meetings, and then it is calculated from the registrations'),
field=models.IntegerField(blank=True, default=None, help_text='Number of Attendees for backfilled meetings, leave it blank for new meetings, and then it is calculated from the registrations', null=True),
),
]