mirror of
http://git.carcosa.net/jmcbray/brutaldon.git
synced 2024-11-23 15:23:52 -05:00
Fix formatting of migrations
This commit is contained in:
parent
eaf0cbd46b
commit
c836861027
@ -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.",
|
||||||
),
|
),
|
||||||
|
)
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user