mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 04:23:46 +00:00
presence: Support null values in UserPresence.
This commit is contained in:
committed by
Tim Abbott
parent
0d79f6dd27
commit
a9f40a64fd
@@ -113,11 +113,15 @@ class Migration(migrations.Migration):
|
||||
),
|
||||
(
|
||||
"last_connected_time",
|
||||
models.DateTimeField(db_index=True, default=django.utils.timezone.now),
|
||||
models.DateTimeField(
|
||||
db_index=True, default=django.utils.timezone.now, null=True
|
||||
),
|
||||
),
|
||||
(
|
||||
"last_active_time",
|
||||
models.DateTimeField(db_index=True, default=django.utils.timezone.now),
|
||||
models.DateTimeField(
|
||||
db_index=True, default=django.utils.timezone.now, null=True
|
||||
),
|
||||
),
|
||||
(
|
||||
"realm",
|
||||
|
||||
Reference in New Issue
Block a user