21 lines
559 B
Python
21 lines
559 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.9 on 2016-03-22 17:42
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('oidc_provider', '0010_code_is_authentication'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='client',
|
||
|
name='jwt_alg',
|
||
|
field=models.CharField(choices=[(b'HS256', b'HS256'), (b'RS256', b'RS256')], default=b'RS256', max_length=10, verbose_name='JWT Algorithm'),
|
||
|
),
|
||
|
]
|