added user filkes to recipe and added is_image flag to user file

This commit is contained in:
vabene1111
2024-12-22 12:05:47 +01:00
parent 169f799a23
commit 0bcdf5e0a3
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
# 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'),
),
]