1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00
Files
peeringdb-peeringdb/peeringdb_server/migrations/0004_geocode_fields.py
Matt Griswold 04f1928b3c Updates 2.23 (#843)
* pipenv lock and pyupgrade

* pyupgrade, black format, add docs

* update for py3.7
2020-09-29 20:13:38 -05:00

39 lines
1.1 KiB
Python

# Generated by Django 1.11.4 on 2017-08-24 15:47
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("peeringdb_server", "0003_add_lat_lon_to_address_models"),
]
operations = [
migrations.AddField(
model_name="facility",
name="geocode_date",
field=models.DateTimeField(
blank=True, help_text=b"Last time of attempted geocode", null=True
),
),
migrations.AddField(
model_name="facility",
name="geocode_error",
field=models.TextField(
blank=True,
help_text=b"Error message of previous geocode attempt",
null=True,
),
),
migrations.AddField(
model_name="facility",
name="geocode_status",
field=models.BooleanField(
default=False,
help_text=b"Has this object's latitude and longitude been synchronized to its address fields",
),
),
]