summaryrefslogtreecommitdiff
path: root/kitchen/migrations/0002_add_rating_and_preferences.py
blob: a95051bbdb115ef6af280b82664054583be771f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# 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"),
        ),
    ]