update migrations
This commit is contained in:
parent
fde4ea8c4c
commit
0662255b27
@ -1,24 +0,0 @@
|
|||||||
# Generated by Django 4.1.7 on 2023-04-24 16:22
|
|
||||||
|
|
||||||
from django.db import migrations, models
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
|
||||||
|
|
||||||
dependencies = [
|
|
||||||
('cookbook', '0188_space_no_sharing_limit'),
|
|
||||||
]
|
|
||||||
|
|
||||||
operations = [
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='automation',
|
|
||||||
name='type',
|
|
||||||
field=models.CharField(choices=[('FOOD_ALIAS', 'Food Alias'), ('UNIT_ALIAS', 'Unit Alias'), ('KEYWORD_ALIAS', 'Keyword Alias'),
|
|
||||||
('DESCRIPTION_REPLACE', 'Description Replace'), ('INSTRUCTION_REPLACE', 'Instruction Replace'), ('NEVER_UNIT', 'Never Unit')], max_length=128),
|
|
||||||
),
|
|
||||||
migrations.AlterField(
|
|
||||||
model_name='userpreference',
|
|
||||||
name='use_fractions',
|
|
||||||
field=models.BooleanField(default=True),
|
|
||||||
),
|
|
||||||
]
|
|
34
cookbook/migrations/0197_alter_automation_type_and_more.py
Normal file
34
cookbook/migrations/0197_alter_automation_type_and_more.py
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# Generated by Django 4.1.10 on 2023-08-10 14:05
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('cookbook', '0196_food_url'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='automation',
|
||||||
|
name='type',
|
||||||
|
field=models.CharField(
|
||||||
|
choices=[
|
||||||
|
('FOOD_ALIAS',
|
||||||
|
'Food Alias'),
|
||||||
|
('UNIT_ALIAS',
|
||||||
|
'Unit Alias'),
|
||||||
|
('KEYWORD_ALIAS',
|
||||||
|
'Keyword Alias'),
|
||||||
|
('DESCRIPTION_REPLACE',
|
||||||
|
'Description Replace'),
|
||||||
|
('INSTRUCTION_REPLACE',
|
||||||
|
'Instruction Replace'),
|
||||||
|
('NEVER_UNIT',
|
||||||
|
'Never Unit'),
|
||||||
|
('TRANSPOSE_WORDS',
|
||||||
|
'Transpose Words')],
|
||||||
|
max_length=128),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user