Skip to content
Snippets Groups Projects

Create migration for newer version of django-oauth-toolkit

Merged Jonathan Weth requested to merge fix/oauth-toolkit-migration into master
Files
2
# Generated by Django 4.1.9 on 2023-06-17 10:59
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
("sites", "0002_alter_domain_unique"),
("core", "0048_delete_personalicalurl"),
]
operations = [
migrations.AddField(
model_name="oauthapplication",
name="post_logout_redirect_uris",
field=models.TextField(
blank=True, help_text="Allowed Post Logout URIs list, space separated"
),
),
]
Loading