Skip to content

Commit

Permalink
add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
simonkern authored and auvipy committed Jan 10, 2022
1 parent a5b2761 commit db0606c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions push_notifications/migrations/0009_alter_apnsdevice_device_id.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.9 on 2022-01-10 09:03

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('push_notifications', '0008_webpush_add_edge'),
]

operations = [
migrations.AlterField(
model_name='apnsdevice',
name='device_id',
field=models.UUIDField(blank=True, db_index=True, help_text='UUID / UIDevice.identifierForVendor()', null=True, verbose_name='Device ID'),
),
]

0 comments on commit db0606c

Please sign in to comment.