Skip to content

Commit

Permalink
Add missing migration and bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
xtrinch committed Dec 24, 2021
1 parent c83b90d commit 1265dc4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion fcm_django/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__author__ = "xTrinch"
__email__ = "mojca.rojko@gmail.com"
__version__ = "1.0.6"
__version__ = "1.0.7"


class NotificationError(Exception):
Expand Down
18 changes: 18 additions & 0 deletions fcm_django/migrations/0008_auto_20211224_1205.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.1.12 on 2021-12-24 12:05

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('fcm_django', '0007_auto_20211001_1440'),
]

operations = [
migrations.AlterField(
model_name='fcmdevice',
name='id',
field=models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID'),
),
]

0 comments on commit 1265dc4

Please sign in to comment.