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
|
# -*- coding: utf-8 -*-
# Generated by Django 1.11.10 on 2019-02-06 14:23
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('archaeological_finds', '0062_auto_20190204_1134'),
]
operations = [
migrations.AddField(
model_name='basefind',
name='multi_polygon_source',
field=models.CharField(blank=True, choices=[(b'T', 'Commune'), (b'P', 'Precise')], max_length=1, null=True, verbose_name='Multi-polygon source'),
),
migrations.AddField(
model_name='basefind',
name='point_source',
field=models.CharField(blank=True, choices=[(b'T', 'Commune'), (b'P', 'Precise')], max_length=1, null=True, verbose_name='Point source'),
),
migrations.AddField(
model_name='historicalbasefind',
name='multi_polygon_source',
field=models.CharField(blank=True, choices=[(b'T', 'Commune'), (b'P', 'Precise')], max_length=1, null=True, verbose_name='Multi-polygon source'),
),
migrations.AddField(
model_name='historicalbasefind',
name='point_source',
field=models.CharField(blank=True, choices=[(b'T', 'Commune'), (b'P', 'Precise')], max_length=1, null=True, verbose_name='Point source'),
),
]
|