20 lines
529 B
Python
20 lines
529 B
Python
# Generated by Django 2.2.7 on 2019-11-04 23:53
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("brutaldon", "0022_auto_20190506_0938")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="preference",
|
|
name="bundle_notifications",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="Collapse together boosts or likes of the same toot in the notifications page.",
|
|
),
|
|
)
|
|
]
|