]> git.0d.be Git - django-panik-nonstop.git/commitdiff
add migration for blank jingle durations
authorFrédéric Péters <fpeters@0d.be>
Mon, 6 Jan 2020 12:45:30 +0000 (13:45 +0100)
committerFrédéric Péters <fpeters@0d.be>
Mon, 6 Jan 2020 12:45:30 +0000 (13:45 +0100)
nonstop/migrations/0013_auto_20200106_1342.py [new file with mode: 0644]

diff --git a/nonstop/migrations/0013_auto_20200106_1342.py b/nonstop/migrations/0013_auto_20200106_1342.py
new file mode 100644 (file)
index 0000000..5e684c8
--- /dev/null
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.24 on 2020-01-06 13:42
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('nonstop', '0012_jingle'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='jingle',
+            name='duration',
+            field=models.DurationField(blank=True, null=True, verbose_name='Duration'),
+        ),
+    ]