Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

0002_post_tags.py 547B

1234567891011121314151617181920
  1. # Generated by Django 2.0.6 on 2018-07-15 12:30
  2. from django.db import migrations
  3. import taggit.managers
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('taggit', '0002_auto_20150616_2121'),
  7. ('application', '0001_initial'),
  8. ]
  9. operations = [
  10. migrations.AddField(
  11. model_name='post',
  12. name='tags',
  13. field=taggit.managers.TaggableManager(help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
  14. ),
  15. ]