umap/umap/migrations/0002_tilelayer_tms.py
Yohan Boniface 65e939c4ee Reset migrations
There are two files:
- the initial one that create everyting, but TileLayer.tms
- one for TileLayer.tms, because it was not released so people
  upgrading will need to fake the first, but really run the second
2018-05-19 11:29:30 +02:00

18 lines
373 B
Python

# Generated by Django 2.0.5 on 2018-05-19 09:27
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('umap', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='tilelayer',
name='tms',
field=models.BooleanField(default=False),
),
]