Files
TandoorRecipes/cookbook/migrations/0172_auto_20220219_1655.py
2022-02-19 17:54:00 +01:00

24 lines
651 B
Python

# Generated by Django 3.2.12 on 2022-02-19 15:55
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('cookbook', '0171_alter_searchpreference_trigram_threshold'),
]
operations = [
migrations.AddField(
model_name='ingredient',
name='original_text',
field=models.CharField(blank=True, default=None, max_length=512, null=True),
),
migrations.AddField(
model_name='recipe',
name='source_url',
field=models.CharField(blank=True, default=None, max_length=1024, null=True),
),
]