blob: 6bcc9a9057f7912ad1f48995ceb4e933b16cc3e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Generated by Django 5.2.9 on 2025-12-07 21:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('drinks', '0002_alter_ingredient_amount'),
]
operations = [
migrations.AddField(
model_name='ingredient',
name='optional',
field=models.BooleanField(default=False, help_text='Whether an ingredient is optinal', verbose_name='Optional'),
preserve_default=False,
),
]
|