1234567891011121314151617181920 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.10.5 on 2017-02-09 16:51
- from __future__ import unicode_literals
- from django.db import migrations, models
- class Migration(migrations.Migration):
- dependencies = [
- ('locations', '0001_initial'),
- ]
- operations = [
- migrations.AlterField(
- model_name='locationpage',
- name='lat_long',
- field=models.CharField(help_text="Comma separated lat/long. (Ex. 64.144367, -21.939182) Right click Google Maps and click 'What's Here'", max_length=36),
- ),
- ]
|