0007_auto_20170219_1639.py 1.1 KB

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