From 67d7a7dcf56c58fa380b642352b4f02ae39ce19c Mon Sep 17 00:00:00 2001 From: Valentin Samir Date: Mon, 18 May 2015 23:39:19 +0200 Subject: [PATCH] Forgot the migration file --- .../migrations/0010_auto_20150518_2139.py | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 cas_server/migrations/0010_auto_20150518_2139.py diff --git a/cas_server/migrations/0010_auto_20150518_2139.py b/cas_server/migrations/0010_auto_20150518_2139.py new file mode 100644 index 0000000..8a526d0 --- /dev/null +++ b/cas_server/migrations/0010_auto_20150518_2139.py @@ -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')]), + ), + ]