]> git.0d.be Git - django-panik-combo.git/blobdiff - panikombo/migrations/0021_soundscell_tags.py
add tags selection to sounds cell
[django-panik-combo.git] / panikombo / migrations / 0021_soundscell_tags.py
diff --git a/panikombo/migrations/0021_soundscell_tags.py b/panikombo/migrations/0021_soundscell_tags.py
new file mode 100644 (file)
index 0000000..45e83e9
--- /dev/null
@@ -0,0 +1,22 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.29 on 2020-11-26 12:52
+from __future__ import unicode_literals
+
+from django.db import migrations
+import taggit.managers
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('taggit', '0003_taggeditem_add_unique_index'),
+        ('panikombo', '0020_auto_20201122_2005'),
+    ]
+
+    operations = [
+        migrations.AddField(
+            model_name='soundscell',
+            name='tags',
+            field=taggit.managers.TaggableManager(blank=True, help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
+        ),
+    ]