mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 04:53:36 +00:00
Improves code readability by using string values ("apns", "fcm")
instead of integers (1, 2).
18 lines
441 B
Python
18 lines
441 B
Python
# Generated by Django 5.2.3 on 2025-07-09 13:11
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("zilencer", "0065_remotepushdevice"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="remotepushdevice",
|
|
name="token_kind",
|
|
field=models.CharField(choices=[("apns", "APNs"), ("fcm", "FCM")], max_length=4),
|
|
),
|
|
]
|