Skip to content

Commit

Permalink
Merge pull request #11 from Lightmatter/develop
Browse files Browse the repository at this point in the history
Make id change migration
  • Loading branch information
t-a-y-l-o-r authored Jun 8, 2023
2 parents eb84d57 + 44d2a67 commit c072f34
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.1.9 on 2023-06-06 22:52

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("django_welkin", "0001_initial"),
]

operations = [
migrations.AlterField(
model_name="configuration",
name="id",
field=models.BigAutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
migrations.AlterField(
model_name="webhookmessage",
name="id",
field=models.BigAutoField(
auto_created=True, primary_key=True, serialize=False, verbose_name="ID"
),
),
]

0 comments on commit c072f34

Please sign in to comment.