mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
26 lines
703 B
Python
26 lines
703 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Generated by Django 1.11.12 on 2018-06-21 18:45
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('dcim', '0059_devicetype_add_created_updated_times'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='site',
|
||
|
name='latitude',
|
||
|
field=models.DecimalField(blank=True, decimal_places=6, max_digits=8, null=True),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='site',
|
||
|
name='longitude',
|
||
|
field=models.DecimalField(blank=True, decimal_places=6, max_digits=9, null=True),
|
||
|
),
|
||
|
]
|