19 lines
428 B
Python
19 lines
428 B
Python
# Generated by Django 4.0.3 on 2022-06-18 13:42
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('receipe', '0002_alter_purchasearticle_insale_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='article',
|
|
name='labels',
|
|
field=models.ManyToManyField(blank=True, to='receipe.labels'),
|
|
),
|
|
]
|