mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-10 16:47:59 -05:00
19 lines
437 B
Python
19 lines
437 B
Python
# Generated by Django 4.2.17 on 2024-12-22 11:05
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('cookbook', '0219_connectorconfig_supports_description_field'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='recipe',
|
|
name='images',
|
|
field=models.ManyToManyField(blank=True, to='cookbook.userfile'),
|
|
),
|
|
]
|