diff --git a/moku/migrations/0010_alter_recipe_title.py b/moku/migrations/0010_alter_recipe_title.py new file mode 100644 index 0000000..a59adb6 --- /dev/null +++ b/moku/migrations/0010_alter_recipe_title.py @@ -0,0 +1,18 @@ +# Generated by Django 5.0.3 on 2024-03-27 16:19 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('moku', '0009_alter_recipestep_instructions'), + ] + + operations = [ + migrations.AlterField( + model_name='recipe', + name='title', + field=models.CharField(help_text='give the recipe a title, just so you know what the recipe is for.', max_length=64, verbose_name='recipe title'), + ), + ] diff --git a/moku/models/recipe.py b/moku/models/recipe.py index 72d4d58..498ca30 100644 --- a/moku/models/recipe.py +++ b/moku/models/recipe.py @@ -29,7 +29,7 @@ class Recipe(models.Model): title = models.CharField( verbose_name=_("recipe title"), max_length=64, - help_text=_("give the recipe a title, just so you know the recipe is for."), + help_text=_("give the recipe a title, just so you know what the recipe is for."), ) created_by = models.ForeignKey( "User",