Add a forgotten migration (only change help_text)
This commit is contained in:
parent
07a537b403
commit
3c2245e9cd
1 changed files with 40 additions and 0 deletions
40
cas_server/migrations/0009_auto_20160814_0619.py
Normal file
40
cas_server/migrations/0009_auto_20160814_0619.py
Normal file
|
@ -0,0 +1,40 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.8 on 2016-08-14 06:19
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('cas_server', '0008_newversionwarning'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='filterattributvalue',
|
||||
name='attribut',
|
||||
field=models.CharField(help_text='Name of the attribute which must verify pattern', max_length=255, verbose_name='attribute'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='replaceattributname',
|
||||
name='name',
|
||||
field=models.CharField(help_text='name of an attribute to send to the service, use * for all attributes', max_length=255, verbose_name='name'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='replaceattributname',
|
||||
name='replace',
|
||||
field=models.CharField(blank=True, help_text='name under which the attribute will be showto the service. empty = default name of the attribut', max_length=255, verbose_name='replace'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='replaceattributvalue',
|
||||
name='attribut',
|
||||
field=models.CharField(help_text='Name of the attribute for which the value must be replace', max_length=255, verbose_name='attribute'),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='servicepattern',
|
||||
name='user_field',
|
||||
field=models.CharField(blank=True, default=b'', help_text='Name of the attribute to transmit as username, empty = login', max_length=255, verbose_name='user field'),
|
||||
),
|
||||
]
|
Loading…
Reference in a new issue