]> git.0d.be Git - django-panik-combo.git/blobdiff - panikombo/migrations/0019_soundscell_sound_format.py
add option to limit sounds to a given format
[django-panik-combo.git] / panikombo / migrations / 0019_soundscell_sound_format.py
diff --git a/panikombo/migrations/0019_soundscell_sound_format.py b/panikombo/migrations/0019_soundscell_sound_format.py
new file mode 100644 (file)
index 0000000..2530f12
--- /dev/null
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.29 on 2020-11-22 14:02
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('emissions', '0015_auto_20200404_1510'),
+        ('panikombo', '0018_soundscell_sort_order'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='soundscell',
+            name='sound_format',
+            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='emissions.Format', verbose_name='Limit to format'),
+        ),
+    ]