Fix formatting of migrations

This commit is contained in:
Jason McBrayer 2019-11-07 13:32:41 -05:00
parent eaf0cbd46b
commit c836861027

View File

@ -5,14 +5,15 @@ from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [("brutaldon", "0022_auto_20190506_0938")]
('brutaldon', '0022_auto_20190506_0938'),
]
operations = [ operations = [
migrations.AddField( migrations.AddField(
model_name='preference', model_name="preference",
name='bundle_notifications', name="bundle_notifications",
field=models.BooleanField(default=False, help_text='Collapse together boosts or likes of the same toot in the notifications page.'), field=models.BooleanField(
default=False,
help_text="Collapse together boosts or likes of the same toot in the notifications page.",
), ),
)
] ]