Since we use this to drive opt-outs, we need it to actually exist for
all conferences.
Making this a separate migration to make it possible to go in and
manually add series for all conferences when this migration fails :)
--- /dev/null
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('confreg', '0012_mandatory_tokens'),
+ ]
+
+ operations = [
+ migrations.AlterField(
+ model_name='conference',
+ name='series',
+ field=models.ForeignKey(to='confreg.ConferenceSeries'),
+ ),
+ ]