0011_profile_auto_check_for_updates.py 410 B

123456789101112131415161718
  1. # Generated by Django 3.2.3 on 2021-07-29 23:28
  2. from django.db import migrations, models
  3. class Migration(migrations.Migration):
  4. dependencies = [
  5. ('users', '0010_profile_enable_gradient_bg'),
  6. ]
  7. operations = [
  8. migrations.AddField(
  9. model_name='profile',
  10. name='auto_check_for_updates',
  11. field=models.BooleanField(default=False),
  12. ),
  13. ]