mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Migration to add days of unread to profiles.
This commit is contained in:
parent
2792e7305a
commit
6ec1d762b7
1 changed files with 18 additions and 0 deletions
18
apps/profile/migrations/0006_profile_days_of_unread.py
Normal file
18
apps/profile/migrations/0006_profile_days_of_unread.py
Normal 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),
|
||||
),
|
||||
]
|
Loading…
Add table
Reference in a new issue