newsreader/src/newsreader/accounts/migrations/0013_user_auto_mark_read.py
Sonny Bakker 116b6d1308 0.3.5
- Show timezone next to post datetimes
- Take read status in consideration when sorting posts
2020-10-31 14:31:27 +01:00

20 lines
560 B
Python

# Generated by Django 3.0.7 on 2020-10-27 21:45
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [("accounts", "0012_remove_user_task")]
operations = [
migrations.AddField(
model_name="user",
name="auto_mark_read",
field=models.BooleanField(
default=True,
help_text="Wether posts should be marked as read after x amount of seconds of reading",
verbose_name="Auto read marking",
),
)
]