25 lines
592 B
Python
25 lines
592 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('tracking', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='point',
|
||
|
name='latitude',
|
||
|
field=models.DecimalField(max_digits=13, decimal_places=10),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='point',
|
||
|
name='longitude',
|
||
|
field=models.DecimalField(max_digits=12, decimal_places=10),
|
||
|
),
|
||
|
]
|