2fc4c138b3
We assume this combination is unique with our get and get_or_create calls.
18 lines
386 B
Python
18 lines
386 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('oidc_provider', '0005_token_refresh_token'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterUniqueTogether(
|
|
name='userconsent',
|
|
unique_together=set([('user', 'client')]),
|
|
),
|
|
]
|