21 lines
620 B
Python
21 lines
620 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.6 on 2017-11-02 22:11
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('map', '0018_auto_20171102_2205'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
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'),
|
||
|
),
|
||
|
]
|