23 lines
675 B
Python
23 lines
675 B
Python
# Generated by Django 2.0.2 on 2018-03-04 09:25
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('gym', '0004_auto_20180303_1801'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='room',
|
|
name='latitude',
|
|
field=models.DecimalField(blank=True, decimal_places=8, max_digits=11, null=True, verbose_name='latitude'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='room',
|
|
name='longitude',
|
|
field=models.DecimalField(blank=True, decimal_places=8, max_digits=11, null=True, verbose_name='longitude'),
|
|
),
|
|
]
|