Adding missing migrations.
This commit is contained in:
parent
7cef7ab11a
commit
584e0c951b
1 changed files with 24 additions and 0 deletions
24
oidc_provider/migrations/0009_auto_20160202_1945.py
Normal file
24
oidc_provider/migrations/0009_auto_20160202_1945.py
Normal file
|
@ -0,0 +1,24 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9 on 2016-02-02 19:45
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('oidc_provider', '0008_rsakey'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterModelOptions(
|
||||
name='rsakey',
|
||||
options={'verbose_name': 'RSA Key', 'verbose_name_plural': 'RSA Keys'},
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='rsakey',
|
||||
name='key',
|
||||
field=models.TextField(help_text='Paste your private RSA Key here.'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue