20 lines
555 B
Python
20 lines
555 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.9 on 2016-04-25 18:02
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('oidc_provider', '0013_auto_20160407_1912'),
|
|
]
|
|
|
|
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'),
|
|
),
|
|
]
|