fix: format

This commit is contained in:
Jayash Tripathy
2026-01-12 18:16:00 +05:30
parent 7a12559195
commit 73aaeef4aa

View File

@@ -11,13 +11,17 @@ class Migration(migrations.Migration):
operations = [
migrations.AddField(
model_name='profile',
name='notification_view_mode',
field=models.CharField(choices=[('full', 'Full'), ('compact', 'Compact')], default='full', max_length=255),
model_name="profile",
name="notification_view_mode",
field=models.CharField(
choices=[("full", "Full"), ("compact", "Compact")],
default="full",
max_length=255,
),
),
migrations.AddField(
model_name='user',
name='is_password_reset_required',
model_name="user",
name="is_password_reset_required",
field=models.BooleanField(default=False),
),
]