26 lines
660 B
Python
26 lines
660 B
Python
![]() |
# Generated by Django 5.2.6 on 2025-09-08 09:15
|
||
|
|
||
|
import django.utils.timezone
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('risks', '0008_rename_send_notification_sent'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='risk',
|
||
|
name='created_at',
|
||
|
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
||
|
preserve_default=False,
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='risk',
|
||
|
name='updatet_at',
|
||
|
field=models.DateTimeField(auto_now=True),
|
||
|
),
|
||
|
]
|