24 lines
651 B
Python
24 lines
651 B
Python
# Generated by Django 6.0.1 on 2026-07-13 16:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('appreciation', '0006_appreciation_reference_number_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='appreciation',
|
|
name='dept_response_reminder_sent_at',
|
|
field=models.DateTimeField(blank=True, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='appreciation',
|
|
name='dept_response_second_reminder_sent_at',
|
|
field=models.DateTimeField(blank=True, null=True),
|
|
),
|
|
]
|