mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-02 20:59:28 -05:00
added user filkes to recipe and added is_image flag to user file
This commit is contained in:
18
cookbook/migrations/0220_recipe_images.py
Normal file
18
cookbook/migrations/0220_recipe_images.py
Normal 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'),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user