25 lines
718 B
Python
25 lines
718 B
Python
# Generated by Django 5.0.2 on 2024-03-28 07:47
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('module_activity', '0012_pasttreatment_is_recurring_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='FoodIngredintDataset',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('food_name', models.CharField(max_length=100)),
|
|
('ingredients', models.JSONField(default=list)),
|
|
],
|
|
options={
|
|
'db_table': 'food_ingredient_dataset',
|
|
},
|
|
),
|
|
]
|