diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-09 11:00:36 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-01-09 11:00:36 +0100 | 
| commit | 62f73b8142e180eafc698f5e3196514b9ff61f0b (patch) | |
| tree | d416fb321db5900504cd9710dedefc74fad8a9bd /archaeological_warehouse/migrations/0012_auto_20180109_1057.py | |
| parent | 7125b34ef93aec4ea15e7419b1f1c02728868271 (diff) | |
| download | Ishtar-62f73b8142e180eafc698f5e3196514b9ff61f0b.tar.bz2 Ishtar-62f73b8142e180eafc698f5e3196514b9ff61f0b.zip  | |
Fix index constraint for Container
Diffstat (limited to 'archaeological_warehouse/migrations/0012_auto_20180109_1057.py')
| -rw-r--r-- | archaeological_warehouse/migrations/0012_auto_20180109_1057.py | 19 | 
1 files changed, 19 insertions, 0 deletions
diff --git a/archaeological_warehouse/migrations/0012_auto_20180109_1057.py b/archaeological_warehouse/migrations/0012_auto_20180109_1057.py new file mode 100644 index 000000000..c857bb3d2 --- /dev/null +++ b/archaeological_warehouse/migrations/0012_auto_20180109_1057.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11 on 2018-01-09 10:57 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + +    dependencies = [ +        ('archaeological_warehouse', '0011_auto_20171026_1828'), +    ] + +    operations = [ +        migrations.AlterUniqueTogether( +            name='container', +            unique_together=set([('index', 'responsible')]), +        ), +    ]  | 
