1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-04-07 14:14
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('archaeological_warehouse', '0105_auto_20200407_1021'),
]
operations = [
migrations.RemoveField(
model_name='collection',
name='history_creator',
),
migrations.RemoveField(
model_name='collection',
name='history_modifier',
),
migrations.RemoveField(
model_name='collection',
name='imports',
),
migrations.RemoveField(
model_name='collection',
name='lock_user',
),
migrations.RemoveField(
model_name='collection',
name='warehouse',
),
migrations.DeleteModel(
name='Collection',
),
]
|