Skip to content

Commit 5f139f9

Browse files
style: format migration file for userbadge is_active field
1 parent 4d29a6d commit 5f139f9

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

backend/apps/nest/migrations/0007_userbadge_is_active.py

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,18 @@
44

55

66
class Migration(migrations.Migration):
7-
87
dependencies = [
9-
('nest', '0006_userbadge_uq_userbadge_user_badge'),
8+
("nest", "0006_userbadge_uq_userbadge_user_badge"),
109
]
1110

1211
operations = [
1312
migrations.AddField(
14-
model_name='userbadge',
15-
name='is_active',
16-
field=models.BooleanField(default=True, help_text='Indicates if the badge assignment is active.', verbose_name='Is active'),
13+
model_name="userbadge",
14+
name="is_active",
15+
field=models.BooleanField(
16+
default=True,
17+
help_text="Indicates if the badge assignment is active.",
18+
verbose_name="Is active",
19+
),
1720
),
1821
]

0 commit comments

Comments
 (0)