From 53759b1978429ed4846f2e53ec6ea0a1eaf13288 Mon Sep 17 00:00:00 2001 From: Mikko Kupsu Date: Fri, 12 Apr 2024 19:20:43 +0300 Subject: [PATCH] Add missing migration --- ...0010_alter_gcmdevice_cloud_message_type.py | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 push_notifications/migrations/0010_alter_gcmdevice_cloud_message_type.py diff --git a/push_notifications/migrations/0010_alter_gcmdevice_cloud_message_type.py b/push_notifications/migrations/0010_alter_gcmdevice_cloud_message_type.py new file mode 100644 index 00000000..2aa3a61a --- /dev/null +++ b/push_notifications/migrations/0010_alter_gcmdevice_cloud_message_type.py @@ -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", + ), + ), + ]