From 2675ed69eed4da3d674aa3761702f3e9c5573db8 Mon Sep 17 00:00:00 2001 From: Andrew Godwin Date: Sat, 14 Jan 2023 11:11:36 -0700 Subject: [PATCH] Update help_text in migration --- users/migrations/0011_announcement.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/migrations/0011_announcement.py b/users/migrations/0011_announcement.py index 036d516..04b13df 100644 --- a/users/migrations/0011_announcement.py +++ b/users/migrations/0011_announcement.py @@ -40,7 +40,7 @@ class Migration(migrations.Migration): "start", models.DateTimeField( blank=True, - help_text="When the announcement will start appearing.\nLeave blank to have it begin as soon as it is published.", + help_text="When the announcement will start appearing.\nLeave blank to have it begin as soon as it is published.\nFormat: 2023-01-01 or 2023-01-01 12:30:00", null=True, ), ), @@ -48,7 +48,7 @@ class Migration(migrations.Migration): "end", models.DateTimeField( blank=True, - help_text="When the announcement will stop appearing.\nLeave blank to have it display indefinitely.", + help_text="When the announcement will stop appearing.\nLeave blank to have it display indefinitely.\nFormat: 2023-01-01 or 2023-01-01 12:30:00", null=True, ), ),