Forgot the migration file
This commit is contained in:
parent
556aa34a3f
commit
67d7a7dcf5
1 changed files with 24 additions and 0 deletions
24
cas_server/migrations/0010_auto_20150518_2139.py
Normal file
24
cas_server/migrations/0010_auto_20150518_2139.py
Normal file
|
@ -0,0 +1,24 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import models, migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('cas_server', '0009_auto_20150518_1740'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='replaceattributname',
|
||||||
|
name='name',
|
||||||
|
field=models.CharField(help_text="nom d'un attributs \xe0 transmettre au service", max_length=255),
|
||||||
|
preserve_default=True,
|
||||||
|
),
|
||||||
|
migrations.AlterUniqueTogether(
|
||||||
|
name='replaceattributname',
|
||||||
|
unique_together=set([('name', 'service_pattern')]),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue