This commit is contained in:
M1ha 2018-12-13 11:53:36 +05:00
parent 71e839167a
commit 9ab38c464d

View File

@ -30,7 +30,7 @@ class ClickHouseModelMeta(InfiModelBase):
if res.django_model and not issubclass(res.django_model, ClickHouseSyncModel): if res.django_model and not issubclass(res.django_model, ClickHouseSyncModel):
raise TypeError('django_model must be ClickHouseSyncModel subclass') raise TypeError('django_model must be ClickHouseSyncModel subclass')
if res.django_model and res.get_sync_delay(): if res.django_model and res.sync_enabled:
res.django_model.register_clickhouse_sync_model(res) res.django_model.register_clickhouse_sync_model(res)
res.objects = QuerySet(res) res.objects = QuerySet(res)