]> git.0d.be Git - django-panik-combo.git/blobdiff - panikombo/migrations/0017_soundscell_title.py
add title attribute to sounds cell
[django-panik-combo.git] / panikombo / migrations / 0017_soundscell_title.py
diff --git a/panikombo/migrations/0017_soundscell_title.py b/panikombo/migrations/0017_soundscell_title.py
new file mode 100644 (file)
index 0000000..e8fdca9
--- /dev/null
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.29 on 2020-11-21 14:33
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('panikombo', '0016_soundscell'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='soundscell',
+            name='title',
+            field=models.CharField(blank=True, max_length=150, verbose_name='Title'),
+        ),
+    ]