mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2025-02-11 16:30:33 +03:00
96300761a7
Сделал галочку active у EventType.
17 lines
377 B
Python
17 lines
377 B
Python
"""
|
|
This file contains sample models to use in tests
|
|
"""
|
|
from django.db import models
|
|
|
|
from django_clickhouse.models import ClickHouseSyncModel
|
|
|
|
|
|
class TestModel(ClickHouseSyncModel):
|
|
value = models.IntegerField()
|
|
created_date = models.DateField()
|
|
|
|
|
|
class SecondaryTestModel(ClickHouseSyncModel):
|
|
value = models.IntegerField()
|
|
created_date = models.DateField()
|