123456789101112131415161718192021 |
- # -*- coding: utf-8 -*-
- # Generated by Django 1.10.5 on 2017-02-11 22:29
- from __future__ import unicode_literals
- import django.core.validators
- 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, 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+)?)$')]),
- ),
- ]
|