mirror of https://gitlab.crans.org/bde/nk20
20 lines
486 B
Python
20 lines
486 B
Python
|
# Generated by Django 2.2.28 on 2024-05-24 19:39
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
import django.utils.timezone
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('food', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='basic_food',
|
||
|
name='expiry_date',
|
||
|
field=models.DateTimeField(blank=True, default=django.utils.timezone.now, null=True, verbose_name='expiry date'),
|
||
|
),
|
||
|
]
|