blob: 7465afd083df14224d7059bbfcef9340cb60f616 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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')]),
),
]
|