Add a forgotten migration (only change help_text and validators)
This commit is contained in:
parent
902dd103f1
commit
7bfaaff4f7
2 changed files with 44 additions and 0 deletions
|
@ -6,6 +6,14 @@ All notable changes to this project will be documented in this file.
|
||||||
.. contents:: Table of Contents
|
.. contents:: Table of Contents
|
||||||
:depth: 2
|
:depth: 2
|
||||||
|
|
||||||
|
Unreleased
|
||||||
|
==========
|
||||||
|
|
||||||
|
Added
|
||||||
|
-----
|
||||||
|
* Add a forgotten migration (only change help_text and validators)
|
||||||
|
|
||||||
|
|
||||||
v0.7.0 - 2016-08-24
|
v0.7.0 - 2016-08-24
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
|
36
cas_server/migrations/0010_auto_20160824_2112.py
Normal file
36
cas_server/migrations/0010_auto_20160824_2112.py
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10 on 2016-08-24 21:12
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import cas_server.utils
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('cas_server', '0009_auto_20160814_0619'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='filterattributvalue',
|
||||||
|
name='pattern',
|
||||||
|
field=models.CharField(help_text='a regular expression', max_length=255, validators=[cas_server.utils.regexpr_validator], verbose_name='pattern'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='replaceattributname',
|
||||||
|
name='replace',
|
||||||
|
field=models.CharField(blank=True, help_text='name under which the attribute will be show to the service. empty = default name of the attribut', max_length=255, verbose_name='replace'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='replaceattributvalue',
|
||||||
|
name='pattern',
|
||||||
|
field=models.CharField(help_text='An regular expression maching whats need to be replaced', max_length=255, validators=[cas_server.utils.regexpr_validator], verbose_name='pattern'),
|
||||||
|
),
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='servicepattern',
|
||||||
|
name='pattern',
|
||||||
|
field=models.CharField(help_text="A regular expression matching services. Will usually looks like '^https://some\\.server\\.com/path/.*$'.As it is a regular expression, special character must be escaped with a '\\'.", max_length=255, unique=True, validators=[cas_server.utils.regexpr_validator], verbose_name='pattern'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue