ojuso-map/apps/map/migrations/0019_casestudy_coordinate_reference_system.py

27 lines
736 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
# Generated by Django 1.11.6 on 2017-11-02 22:11
from __future__ import unicode_literals
2019-08-19 21:53:34 +00:00
from django.db import migrations
from django.db import models
class Migration(migrations.Migration):
2019-08-19 21:37:32 +00:00
dependencies = [("map", "0018_auto_20171102_2205")]
operations = [
migrations.AddField(
2019-08-19 21:37:32 +00:00
model_name="casestudy",
name="coordinate_reference_system",
field=models.CharField(
blank=True,
default=None,
help_text="Enter the coordinate reference system of the shapefiles.",
max_length=12,
null=True,
verbose_name="Coordinate reference system",
),
)
]