summaryrefslogtreecommitdiff
path: root/archaeological_operations/migrations/0050_auto_20190206_1423.py
blob: a632b60595817e63adbab34ca73fe989e76fee38 (plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- 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_operations', '0049_auto_20190122_1621'),
    ]

    operations = [
        migrations.AddField(
            model_name='archaeologicalsite',
            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='archaeologicalsite',
            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='historicalarchaeologicalsite',
            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='historicalarchaeologicalsite',
            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='historicaloperation',
            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='historicaloperation',
            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='operation',
            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='operation',
            name='point_source',
            field=models.CharField(blank=True, choices=[(b'T', 'Commune'), (b'P', 'Precise')], max_length=1, null=True, verbose_name='Point source'),
        ),
    ]