Skip to content

Commit

Permalink
Modify migration file to include meta data changes
Browse files Browse the repository at this point in the history
The OIDCBackChannelLogoutEvent model's meta data was changed in commit
f62a72b. Although this has no effect on the database, Django still
wants to include the meta data in migrations. Since this migration file
isn't yet included in any release, it can be modified, instead of
creating a new migration file only for the meta data change.
  • Loading branch information
akikoskinen committed Aug 5, 2021
1 parent f603c20 commit a28b2bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions helusers/migrations/0002_add_oidcbackchannellogoutevent.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
# Generated by Django 3.2.4 on 2021-06-21 05:46

from django.db import migrations, models
import django.utils.timezone

Expand Down Expand Up @@ -29,6 +27,8 @@ class Migration(migrations.Migration):
("sid", models.CharField(blank=True, db_index=True, max_length=4096)),
],
options={
"verbose_name": "OIDC back channel logout event",
"verbose_name_plural": "OIDC back channel logout events",
"unique_together": {("iss", "sub", "sid")},
},
),
Expand Down

0 comments on commit a28b2bc

Please sign in to comment.