]> git.0d.be Git - django-panik-combo.git/blob - panikombo/migrations/0021_soundscell_tags.py
add tags selection to sounds cell
[django-panik-combo.git] / panikombo / migrations / 0021_soundscell_tags.py
1 # -*- coding: utf-8 -*-
2 # Generated by Django 1.11.29 on 2020-11-26 12:52
3 from __future__ import unicode_literals
4
5 from django.db import migrations
6 import taggit.managers
7
8
9 class Migration(migrations.Migration):
10
11     dependencies = [
12         ('taggit', '0003_taggeditem_add_unique_index'),
13         ('panikombo', '0020_auto_20201122_2005'),
14     ]
15
16     operations = [
17         migrations.AddField(
18             model_name='soundscell',
19             name='tags',
20             field=taggit.managers.TaggableManager(blank=True, help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
21         ),
22     ]