From 3294704aeefd7ed5c08804e910341515de6548b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Kl=C3=BCnder?= Date: Tue, 31 Oct 2017 16:07:42 +0100 Subject: [PATCH] make Level.short_label a SlugField --- .../migrations/0042_auto_20171031_1507.py | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/c3nav/mapdata/migrations/0042_auto_20171031_1507.py diff --git a/src/c3nav/mapdata/migrations/0042_auto_20171031_1507.py b/src/c3nav/mapdata/migrations/0042_auto_20171031_1507.py new file mode 100644 index 00000000..705af75a --- /dev/null +++ b/src/c3nav/mapdata/migrations/0042_auto_20171031_1507.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.6 on 2017-10-31 15:07 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('mapdata', '0041_level_short_label'), + ] + + operations = [ + migrations.AlterField( + model_name='level', + name='short_label', + field=models.SlugField(max_length=20, unique=True, verbose_name='short label'), + ), + ]