mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	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.
		
			
				
	
	
		
			19 lines
		
	
	
		
			487 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			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),
 | 
						|
        ),
 | 
						|
    ]
 |