diff --git a/cas_server/migrations/0009_auto_20160814_0619.py b/cas_server/migrations/0009_auto_20160814_0619.py new file mode 100644 index 0000000..4eeeb50 --- /dev/null +++ b/cas_server/migrations/0009_auto_20160814_0619.py @@ -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'), + ), + ]