blob: 773d985e8146e8cd68ded6f467562474b6cc02bb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 2.1.2 on 2019-12-29 16:00
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('locations', '0019_gpxfile_gpxpoint_gpxtrack'),
]
operations = [
migrations.AlterField(
model_name='gpxfile',
name='raw_data',
field=models.TextField(blank=True),
),
]
|