20 lines
475 B
Python
20 lines
475 B
Python
# Generated by Django 4.0.3 on 2023-03-08 14:44
|
|
|
|
from django.db import migrations
|
|
import receipe.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('receipe', '0043_remove_purchasearticle_article_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='article',
|
|
name='unit',
|
|
field=receipe.models.CharNullField(blank=True, max_length=4, null=True, verbose_name='unit'),
|
|
),
|
|
]
|