zilencer: Make BaseRemoteCount.remote_id field nullable.

This commit is contained in:
Mateusz Mandera
2023-10-23 22:29:42 +02:00
committed by Tim Abbott
parent c4fbb6319b
commit 2ecd7abc0d
4 changed files with 61 additions and 2 deletions

View File

@@ -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