summaryrefslogtreecommitdiff
path: root/archaeological_warehouse/migrations/0019_warehouse_documents.py
blob: 08ee5cb3424de9cc4aa133f22bf8b2ff6a595fe9 (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.10 on 2018-05-30 19:00
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('ishtar_common', '0055_auto_20180530_1900'),
        ('archaeological_warehouse', '0018_auto_20180528_1141'),
    ]

    operations = [
        migrations.AddField(
            model_name='warehouse',
            name='documents',
            field=models.ManyToManyField(blank=True, related_name='warehouses', to='ishtar_common.Document', verbose_name='Documents'),
        ),
    ]