# -*- coding: utf-8 -*- # Generated by Django 1.10.5 on 2017-02-15 07:23 from __future__ import unicode_literals import django.core.validators from django.db import migrations, models class Migration(migrations.Migration): dependencies = [ ('locations', '0002_auto_20170211_2229'), ] 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 select 'What's Here'", max_length=36, validators=[django.core.validators.RegexValidator(code='invalid_lat_long', message='Lat Long must be a comma-separated numeric lat and long', regex='^(\\-?\\d+(\\.\\d+)?),\\s*(\\-?\\d+(\\.\\d+)?)$')]), ), ]