20 lines
457 B
Python
20 lines
457 B
Python
# Generated by Django 3.0 on 2020-10-23 10:34
|
|
|
|
from django.db import migrations, models
|
|
import django.utils.timezone
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0028_regnotfallhilfe_wassend'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='regnotfallhilfe',
|
|
name='orderdate',
|
|
field=models.DateField(default=django.utils.timezone.now, null=True),
|
|
),
|
|
]
|