Migration to add days of unread to profiles.

This commit is contained in:
Samuel Clay 2022-01-13 17:09:23 -05:00
parent 2792e7305a
commit 6ec1d762b7

View file

@ -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),
),
]