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.

28 lines
726 B

  1. # Generated by Django 3.0.8 on 2020-08-03 14:13
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('accounts', '0030_member_transfer_request_date'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='profile',
  10. name='call_limit',
  11. field=models.IntegerField(default=0),
  12. ),
  13. migrations.AddField(
  14. model_name='profile',
  15. name='calls_sent',
  16. field=models.IntegerField(default=0),
  17. ),
  18. migrations.AddField(
  19. model_name='profile',
  20. name='last_call_date',
  21. field=models.DateTimeField(blank=True, null=True),
  22. ),
  23. ]