17 lines
375 B
Python
17 lines
375 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.1 on 2017-05-20 01:39
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("map", "0001_initial")]
|
|
|
|
operations = [
|
|
migrations.RenameField(
|
|
model_name="casestudy", old_name="location", new_name="geom"
|
|
)
|
|
]
|