typo fix for some reason requires a migration
authorMagnus Hagander <magnus@hagander.net>
Mon, 31 Oct 2016 13:15:46 +0000 (15:15 +0200)
committerMagnus Hagander <magnus@hagander.net>
Mon, 31 Oct 2016 13:21:52 +0000 (15:21 +0200)
postgresqleu/confreg/migrations/0003_typofix.py [new file with mode: 0644]

diff --git a/postgresqleu/confreg/migrations/0003_typofix.py b/postgresqleu/confreg/migrations/0003_typofix.py
new file mode 100644 (file)
index 0000000..b14f7a0
--- /dev/null
@@ -0,0 +1,19 @@
+# -*- coding: utf-8 -*-
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('confreg', '0002_auto_20160108_1924'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='discountcode',
+            name='requiresregtype',
+            field=models.ManyToManyField(help_text=b'Require a specific registration type to be valid', to='confreg.RegistrationType', blank=True),
+        ),
+    ]