0007_auto_20170219_1639.py 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.5 on 2017-02-19 16:39
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('misago_users', '0006_update_settings'),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name='user',
  12. name='limits_private_thread_invites_to',
  13. field=models.PositiveIntegerField(
  14. choices=[(0, 'Everybody'), (1, 'Users I follow'), (2, 'Nobody')], default=0
  15. ),
  16. ),
  17. migrations.AlterField(
  18. model_name='user',
  19. name='subscribe_to_replied_threads',
  20. field=models.PositiveIntegerField(
  21. choices=[(0, 'No'), (1, 'Notify'), (2, 'Notify with e-mail')], default=0
  22. ),
  23. ),
  24. migrations.AlterField(
  25. model_name='user',
  26. name='subscribe_to_started_threads',
  27. field=models.PositiveIntegerField(
  28. choices=[(0, 'No'), (1, 'Notify'), (2, 'Notify with e-mail')], default=0
  29. ),
  30. ),
  31. ]