mirror of
https://github.com/umap-project/umap.git
synced 2025-04-28 19:42:36 +02:00

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
18 lines
373 B
Python
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),
|
|
),
|
|
]
|