blob: b4f5ea938929595514292f64063c0113e92343da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Generated by Django 2.1.2 on 2019-12-29 18:16
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('locations', '0022_walk_slug'),
]
operations = [
migrations.AlterModelOptions(
name='gpxfile',
options={'ordering': ('title',)},
),
migrations.AddField(
model_name='walk',
name='distance',
field=models.PositiveSmallIntegerField(null=True),
),
]
|