diff --git a/apps/profile/migrations/0006_profile_days_of_unread.py b/apps/profile/migrations/0006_profile_days_of_unread.py new file mode 100644 index 000000000..b1ae4481c --- /dev/null +++ b/apps/profile/migrations/0006_profile_days_of_unread.py @@ -0,0 +1,18 @@ +# Generated by Django 3.1.10 on 2022-01-13 21:08 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('profile', '0005_profile_is_archive'), + ] + + operations = [ + migrations.AddField( + model_name='profile', + name='days_of_unread', + field=models.IntegerField(default=30), + ), + ]