mirror of
https://github.com/carrotquest/django-clickhouse.git
synced 2024-11-11 03:46:46 +03:00
c6da379be7
2) Bugfixes in ClickHouseSyncModel
12 lines
256 B
Python
12 lines
256 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()
|