Skip to content

Commit

Permalink
Add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
kupsum committed Apr 12, 2024
1 parent 1269c60 commit 53759b1
Showing 1 changed file with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Generated by Django 4.2.10 on 2024-04-12 16:29

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("push_notifications", "0009_alter_apnsdevice_device_id"),
]

operations = [
migrations.AlterField(
model_name="gcmdevice",
name="cloud_message_type",
field=models.CharField(
choices=[
("FCM", "Firebase Cloud Message"),
("GCM", "Google Cloud Message"),
],
default="FCM",
help_text="You should choose FCM or GCM",
max_length=3,
verbose_name="Cloud Message Type",
),
),
]

0 comments on commit 53759b1

Please sign in to comment.