mirror of
https://github.com/zulip/zulip.git
synced 2025-11-01 12:33:40 +00:00
zilencer: Make BaseRemoteCount.remote_id field nullable.
This commit is contained in:
committed by
Tim Abbott
parent
c4fbb6319b
commit
2ecd7abc0d
@@ -135,7 +135,7 @@ class BaseRemoteCount(BaseCount):
|
||||
# The remote_id field is the id value of the corresponding *Count object
|
||||
# on the remote server.
|
||||
# It lets us deduplicate data from the remote server.
|
||||
remote_id = models.IntegerField()
|
||||
remote_id = models.IntegerField(null=True)
|
||||
|
||||
class Meta:
|
||||
abstract = True
|
||||
|
Reference in New Issue
Block a user