zilencer: Clarify what the remote_id column of RemoteCounts is.

This commit is contained in:
Mateusz Mandera
2023-10-20 02:20:44 +02:00
committed by Tim Abbott
parent 1af84c1231
commit 852e13a0f0

View File

@@ -132,7 +132,9 @@ class RemoteRealmAuditLog(AbstractRealmAuditLog):
class BaseRemoteCount(BaseCount):
server = models.ForeignKey(RemoteZulipServer, on_delete=models.CASCADE)
# The remote_id field lets us deduplicate data from the remote server
# 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()
class Meta: