2018-11-08 19:45:21 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
# Generated by Django 1.11.4 on 2017-08-24 15:47
|
2020-01-08 13:29:58 -06:00
|
|
|
|
2018-11-08 19:45:21 +00:00
|
|
|
|
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
|
|
dependencies = [
|
2019-12-05 16:57:52 +00:00
|
|
|
("peeringdb_server", "0003_add_lat_lon_to_address_models"),
|
2018-11-08 19:45:21 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
|
migrations.AddField(
|
2019-12-05 16:57:52 +00:00
|
|
|
model_name="facility",
|
|
|
|
|
name="geocode_date",
|
2018-11-08 19:45:21 +00:00
|
|
|
field=models.DateTimeField(
|
2019-12-05 16:57:52 +00:00
|
|
|
blank=True, help_text=b"Last time of attempted geocode", null=True
|
|
|
|
|
),
|
2018-11-08 19:45:21 +00:00
|
|
|
),
|
|
|
|
|
migrations.AddField(
|
2019-12-05 16:57:52 +00:00
|
|
|
model_name="facility",
|
|
|
|
|
name="geocode_error",
|
2018-11-08 19:45:21 +00:00
|
|
|
field=models.TextField(
|
|
|
|
|
blank=True,
|
2019-12-05 16:57:52 +00:00
|
|
|
help_text=b"Error message of previous geocode attempt",
|
|
|
|
|
null=True,
|
|
|
|
|
),
|
2018-11-08 19:45:21 +00:00
|
|
|
),
|
|
|
|
|
migrations.AddField(
|
2019-12-05 16:57:52 +00:00
|
|
|
model_name="facility",
|
|
|
|
|
name="geocode_status",
|
2018-11-08 19:45:21 +00:00
|
|
|
field=models.BooleanField(
|
2019-12-05 16:57:52 +00:00
|
|
|
default=False,
|
2020-09-29 20:01:47 +00:00
|
|
|
help_text=b"Has this object's latitude and longitude been synchronized to its address fields",
|
2018-11-08 19:45:21 +00:00
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
]
|