CHange unique constrain

This commit is contained in:
Valentin Samir
2015-05-23 19:32:02 +02:00
parent f4935711cf
commit f9ccd6e540
2 changed files with 19 additions and 1 deletions

View 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')]),
),
]