CHange unique constrain
This commit is contained in:
parent
f4935711cf
commit
f9ccd6e540
2 changed files with 19 additions and 1 deletions
18
cas_server/migrations/0011_auto_20150523_1731.py
Normal file
18
cas_server/migrations/0011_auto_20150523_1731.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import models, migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('cas_server', '0010_auto_20150518_2139'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterUniqueTogether(
|
||||||
|
name='replaceattributname',
|
||||||
|
unique_together=set([('name', 'replace', 'service_pattern')]),
|
||||||
|
),
|
||||||
|
]
|
|
@ -132,7 +132,7 @@ class Usernames(models.Model):
|
||||||
|
|
||||||
class ReplaceAttributName(models.Model):
|
class ReplaceAttributName(models.Model):
|
||||||
class Meta:
|
class Meta:
|
||||||
unique_together = ('name', 'service_pattern')
|
unique_together = ('name', 'replace', 'service_pattern')
|
||||||
name = models.CharField(max_length=255, help_text=u"nom d'un attributs à transmettre au service")
|
name = models.CharField(max_length=255, help_text=u"nom d'un attributs à transmettre au service")
|
||||||
replace = models.CharField(max_length=255, blank=True, help_text=u"nom sous lequel l'attribut sera présenté au service. vide = inchangé")
|
replace = models.CharField(max_length=255, blank=True, help_text=u"nom sous lequel l'attribut sera présenté au service. vide = inchangé")
|
||||||
service_pattern = models.ForeignKey(ServicePattern, related_name="attributs")
|
service_pattern = models.ForeignKey(ServicePattern, related_name="attributs")
|
||||||
|
|
Loading…
Reference in a new issue