Skip to content

Commit

Permalink
Pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
xtrinch committed May 3, 2023
1 parent 50376c2 commit 52506cd
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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",
),
),
]

0 comments on commit 52506cd

Please sign in to comment.