mirror of
				https://github.com/peeringdb/peeringdb.git
				synced 2024-05-11 05:55:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			861 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			861 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
# Generated by Django 1.11.4 on 2017-08-30 15:27
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
from django.db import migrations
 | 
						|
 | 
						|
 | 
						|
class Migration(migrations.Migration):
 | 
						|
 | 
						|
    dependencies = [
 | 
						|
        ('peeringdb_server', '0004_geocode_fields'),
 | 
						|
    ]
 | 
						|
 | 
						|
    operations = [
 | 
						|
        migrations.RenameField(
 | 
						|
            model_name='facility',
 | 
						|
            old_name='lat',
 | 
						|
            new_name='latitude',
 | 
						|
        ),
 | 
						|
        migrations.RenameField(
 | 
						|
            model_name='facility',
 | 
						|
            old_name='lon',
 | 
						|
            new_name='longitude',
 | 
						|
        ),
 | 
						|
        migrations.RenameField(
 | 
						|
            model_name='organization',
 | 
						|
            old_name='lat',
 | 
						|
            new_name='latitude',
 | 
						|
        ),
 | 
						|
        migrations.RenameField(
 | 
						|
            model_name='organization',
 | 
						|
            old_name='lon',
 | 
						|
            new_name='longitude',
 | 
						|
        ),
 | 
						|
    ]
 |