- Ingredient.preferences: qualitative notes on how Tom likes things cooked - CookLog.rating: 1-5 score - CookLog.notes: help text updated for feedback - Migration 0002 - First cook logged: Baked Pasta with lardons, rated 2/5 - Bacon lardons preference: don't oven bake, fry separately, not solo protein
29 lines
957 B
Python
29 lines
957 B
Python
# Generated by Django 5.2.12 on 2026-04-02 21:50
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('kitchen', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='cooklog',
|
|
name='rating',
|
|
field=models.IntegerField(blank=True, help_text='1-5 rating. 1=awful, 3=fine, 5=great', null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='ingredient',
|
|
name='preferences',
|
|
field=models.TextField(blank=True, help_text='How Tom likes this ingredient cooked / qualitative notes. E.g. "Don\'t traybake — needs to be fried. Not substantial as sole protein."'),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='cooklog',
|
|
name='notes',
|
|
field=models.TextField(blank=True, help_text="What worked, what didn't, what to change next time"),
|
|
),
|
|
]
|