django-clickhouse/tests/models.py

12 lines
256 B
Python
Raw Normal View History

2018-11-12 18:20:46 +03:00
"""
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()