From 1e8ff763d5abf97f5c29b8dbfe20c8d641f3d2a5 Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Tue, 7 Apr 2020 18:46:09 +0200 Subject: [PATCH] increased character limit keyword icon thanks cazier for pointing out this issue and providing a PR https://github.com/vabene1111/recipes/pull/46 --- cookbook/migrations/0031_auto_20200407_1841.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 cookbook/migrations/0031_auto_20200407_1841.py diff --git a/cookbook/migrations/0031_auto_20200407_1841.py b/cookbook/migrations/0031_auto_20200407_1841.py new file mode 100644 index 000000000..2000f8d0c --- /dev/null +++ b/cookbook/migrations/0031_auto_20200407_1841.py @@ -0,0 +1,18 @@ +# Generated by Django 3.0.4 on 2020-04-07 16:41 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('cookbook', '0030_recipeingredient_note'), + ] + + operations = [ + migrations.AlterField( + model_name='keyword', + name='icon', + field=models.CharField(blank=True, max_length=16, null=True), + ), + ]