- Show timezone next to post datetimes - Take read status in consideration when sorting posts
20 lines
560 B
Python
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",
|
|
),
|
|
)
|
|
]
|