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

40 lines
1.1 KiB
Python
Raw Normal View History

2018-11-08 19:45:21 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.11.4 on 2017-08-24 15:47
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,
Fix typos1 conflicts resolved (#842) * Update 0006_network_allow_ixp_update.py fixes 'Sepcifies' typo in 0006_network_allow_ixp_update.py * Update 0029_auto_20200401_1006.py fixes 'Sepcifies' typo in 0029_auto_20200401_1006.py * Update models.py fixes 'Sepcifies' typo in models.py * Update org_admin_views.py fixes 'afiliation' typos in org_admin_views.py * Update serializers.py fix use of "it's" when it should instead be "its" in 'serializers.py' * Update 0004_geocode_fields.py correct use of "it's" to be "its" in '0004_geocode_fields.py', also fix spelling of 'syncronized' * Update 0029_auto_20200401_1006.py correct use of "it's" to be "its" in '0029_auto_20200401_1006.py', also fix spelling of 'syncronized' * Update models.py correct use of "it's" to be "its" in 'models.py', also fix spelling of 'syncronized' * Update email_confirm.html correct 're-initate' in email_confirm.html * Update notify-pdb-admin-user-affil.txt correct 'organzation' in 'notify-pdb-admin-user-affil.txt' * Update op_create.md correct 'organzation' in 'ip_create.md' * Update notify-pdb-admin-asnauto-skipvq.txt correct 'organzation' in 'notify-pdb-admin-asnauto-skipvq.txt' * Update models.py correct 'organzation' in 'models.py' * Update notify-pdb-admin-asnauto-skipvq.txt fix 'succesfully' in 'notify-pdb-admin-asnauto-skipvq.txt' * Update views.py fix 'succesfully' in 'views.py' * Update pdb_migrate_ixlans.py * Update models.py several more replacements of "it's" with "its" * Update rest.py one more replacement of "it's" with "its" * Update op_retrieve.md replace "dont" with "don't" * Update notify-org-admin-merge.txt fix "dont" with "don't" * Update error.html fix "dont" with "don't" * Update op_list.md fix "dont" with "don't" * Update serializers.py fix "dont" with "don't" * Update deskpro.py fix "dont" with "don't" * Update mock.py fix "dont" with "don't" * Update ixf.py fix "dont" with "don't" * Update admin.py fix "dont" with "don't" * Update api_schema.py fix "dont" with "don't" * Update signals.py fix "dont" with "don't" * Update views.py fix "dont" with "don't" * Update test_admin.py fix "dont" with "don't" * Update pdb_api_test.py fix "dont" with "don't" * Update models.py fix "dont" with "don't" * revert to "IXP" in help text Co-authored-by: Theo Baschak <tbaschak@users.noreply.github.com> Co-authored-by: Stefan Pratter <stefan@20c.com>
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
),
),
]