blob: aa5958ddf25e0ed4630d766ed947cc721f64cc64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2021-01-21 16:05
from __future__ import unicode_literals
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('archaeological_warehouse', '0107_auto_20201222_1339'),
]
operations = [
migrations.AddField(
model_name='container',
name='collection',
field=models.ForeignKey(blank=True, help_text='Warehouse that own the container', null=True, on_delete=django.db.models.deletion.CASCADE, related_name='collections', to='archaeological_warehouse.Warehouse', verbose_name='Collection'),
),
]
|