19 lines
442 B
Python
19 lines
442 B
Python
|
|
import django.utils.timezone
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
('aufgaben', '0003_phase_feld'),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name='aufgabe',
|
||
|
|
name='erstellt_am',
|
||
|
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
||
|
|
preserve_default=False,
|
||
|
|
),
|
||
|
|
]
|