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.

0003_auto_20181030_1633.py 531B

12345678910111213141516171819
  1. # Generated by Django 2.1.2 on 2018-10-30 15:33
  2. from django.db import migrations
  3. import taggit.managers
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('application', '0002_auto_20181030_1223'),
  7. ]
  8. operations = [
  9. migrations.AlterField(
  10. model_name='customuser',
  11. name='tags',
  12. field=taggit.managers.TaggableManager(blank=True, help_text='A comma-separated list of tags.', through='taggit.TaggedItem', to='taggit.Tag', verbose_name='Tags'),
  13. ),
  14. ]