ojuso-map/apps/map/migrations/0047_auto_20180331_0607.py
2019-08-20 00:10:20 +02:00

59 lines
2.1 KiB
Python

# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2018-03-31 06:08
from __future__ import unicode_literals
import multiselectfield.db.fields
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [("map", "0046_auto_20180331_0604")]
operations = [
migrations.AlterField(
model_name="casestudy",
name="type_of_ecosystem",
field=multiselectfield.db.fields.MultiSelectField(
blank=True,
choices=[
("MARINE", "Marine (e.g. Ocean, Sea)"),
("FRESH", "Freshwater (e.g. Freshwater, Lake)"),
("FOREST", "Forest/Jungle"),
("AGRI", "Agricultural Land"),
("GRASS", "Grassland"),
("DESERT", "Desert (Tundra, Ice or Sand)"),
("WETLND", "Wetland (Marsh, Mangrove, Peat Soil)"),
("URBAN", "Urban"),
],
default=None,
help_text="Select the most relevant type of ecosystem.",
max_length=6,
null=True,
verbose_name="Type of ecosystem",
),
),
migrations.AlterField(
model_name="casestudy",
name="type_of_ecosystem",
field=multiselectfield.db.fields.MultiSelectField(
blank=True,
choices=[
("MARINE", "Marine (e.g. Ocean, Sea)"),
("FRESH", "Freshwater (e.g. Freshwater, Lake)"),
("FOREST", "Forest/Jungle"),
("AGRI", "Agricultural Land"),
("GRASS", "Grassland"),
("DESERT", "Desert (Tundra, Ice or Sand)"),
("WETLND", "Wetland (Marsh, Mangrove, Peat Soil)"),
("URBAN", "Urban"),
],
default=None,
help_text="Select the most relevant type(s).",
max_length=6,
null=True,
verbose_name="Type(s) of ecosystem",
),
),
]