ojuso-map/apps/map/migrations/0040_auto_20180328_0309.py

32 lines
921 B
Python
Raw Normal View History

2018-03-28 03:06:04 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2018-03-28 03:09
from __future__ import unicode_literals
2019-08-19 21:53:34 +00:00
from django.db import migrations
from django.db import models
2018-03-28 03:06:04 +00:00
class Migration(migrations.Migration):
2019-08-19 21:37:32 +00:00
dependencies = [("map", "0039_auto_20180328_0245")]
2018-03-28 03:06:04 +00:00
operations = [
migrations.AlterField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="type_of_extraction",
field=models.CharField(
blank=True,
choices=[
("SUR", "Surface (open pit/open cast/open cut mining)"),
("SUB", "Sub-surface (underground mining)"),
("SEA", "Seabed mining"),
("URB", "Urban mining/recycling"),
],
default=None,
max_length=3,
null=True,
verbose_name="Type of extraction",
),
)
2018-03-28 03:06:04 +00:00
]