summaryrefslogtreecommitdiff
path: root/archaeological_warehouse/migrations
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2020-04-07 12:36:55 +0200
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-02-28 12:15:20 +0100
commit55194aeec747fc07dcaf054877dd194fd1106039 (patch)
treecc2d30385aebb2a7b6d3aebf8dbaa26134617bf0 /archaeological_warehouse/migrations
parent33bcdb096df9e56238f6e21ad0c1da7bcd8e87c9 (diff)
downloadIshtar-55194aeec747fc07dcaf054877dd194fd1106039.tar.bz2
Ishtar-55194aeec747fc07dcaf054877dd194fd1106039.zip
New container management: change ext id
Diffstat (limited to 'archaeological_warehouse/migrations')
-rw-r--r--archaeological_warehouse/migrations/0105_auto_20200407_1021.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/archaeological_warehouse/migrations/0105_auto_20200407_1021.py b/archaeological_warehouse/migrations/0105_auto_20200407_1021.py
new file mode 100644
index 000000000..7465afd08
--- /dev/null
+++ b/archaeological_warehouse/migrations/0105_auto_20200407_1021.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.11.27 on 2020-04-07 10:21
+from __future__ import unicode_literals
+
+from django.db import migrations
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('archaeological_warehouse', '0104_auto_container_views'),
+ ]
+
+ operations = [
+ migrations.AlterUniqueTogether(
+ name='container',
+ unique_together=set([('index', 'responsible'),
+ ('location', 'container_type', 'parent', 'reference')]),
+ ),
+ ]