0002_auto_20170209_1651.py 584 B

1234567891011121314151617181920
  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.10.5 on 2017-02-09 16:51
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. class Migration(migrations.Migration):
  6. dependencies = [
  7. ('locations', '0001_initial'),
  8. ]
  9. operations = [
  10. migrations.AlterField(
  11. model_name='locationpage',
  12. name='lat_long',
  13. 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),
  14. ),
  15. ]