mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
18 lines
417 B
Python
18 lines
417 B
Python
# 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, blank=True, null=True),
|
|
),
|
|
]
|