umap/umap/migrations/0021_remove_map_description.py
Yohan Boniface 453056cb15 feat: remove Map.description
The field was not populated since years, and we already have the
info inside the JSONB `settings`.
2024-04-24 16:39:59 +02:00

16 lines
336 B
Python

# Generated by Django 5.0.4 on 2024-04-24 07:50
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("umap", "0020_alter_tilelayer_url_template"),
]
operations = [
migrations.RemoveField(
model_name="map",
name="description",
),
]