Files
zulip/zerver/migrations/0698_scheduledmessage_request_timestamp.py
Aman Agrawal 9d3279caf4 models: Add request_timestamp field to ScheduledMessage table.
This just records the time when the user created the
request to schedule a message or set a reminder.

This would be unused but is future-proofing against a world
where we decide to edit the strings or UI to show when you
asked for the thing.
2025-04-24 09:43:58 -07:00

19 lines
487 B
Python

# Generated by Django 5.1.8 on 2025-04-24 05:47
import django.utils.timezone
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zerver", "0697_empty_topic_name_for_dms_from_third_party_imports"),
]
operations = [
migrations.AddField(
model_name="scheduledmessage",
name="request_timestamp",
field=models.DateTimeField(default=django.utils.timezone.now),
),
]