diff --git a/fcm_django/migrations/0011_fcmdevice_fcm_django_registration_id_user_id_idx.py b/fcm_django/migrations/0011_fcmdevice_fcm_django_registration_id_user_id_idx.py index a758fb77..ff2c0180 100644 --- a/fcm_django/migrations/0011_fcmdevice_fcm_django_registration_id_user_id_idx.py +++ b/fcm_django/migrations/0011_fcmdevice_fcm_django_registration_id_user_id_idx.py @@ -6,12 +6,15 @@ class Migration(migrations.Migration): dependencies = [ - ('fcm_django', '0010_unique_registration_id'), + ("fcm_django", "0010_unique_registration_id"), ] operations = [ migrations.AddIndex( - model_name='fcmdevice', - index=models.Index(fields=['registration_id', 'user'], name='fcm_django__registr_dacdb2_idx'), + model_name="fcmdevice", + index=models.Index( + fields=["registration_id", "user"], + name="fcm_django__registr_dacdb2_idx", + ), ), ]