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