blob: b6e8f2ee4400cc5a95db54675dd7d9c4f7b06cef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2018-08-14 11:33
from __future__ import unicode_literals
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('archaeological_finds', '0033_auto_20180813_1310'),
]
operations = [
migrations.RemoveField(
model_name='find',
name='checked',
),
migrations.RemoveField(
model_name='historicalfind',
name='checked',
),
]
|