mirror of
https://github.com/Infinidat/infi.clickhouse_orm.git
synced 2024-11-21 16:46:33 +03:00
Finished Release v2.1.2
This commit is contained in:
commit
09aeddf677
|
@ -1,6 +1,10 @@
|
|||
Change Log
|
||||
==========
|
||||
|
||||
v2.1.2
|
||||
------
|
||||
- Add `QuerySet.model` to support django-rest-framework 3
|
||||
|
||||
v2.1.1
|
||||
------
|
||||
- Improve support of ClickHouse v21.9 (mangototango)
|
||||
|
|
|
@ -30,7 +30,7 @@ homepage = https://github.com/Infinidat/infi.clickhouse_orm
|
|||
|
||||
[isolated-python]
|
||||
recipe = infi.recipe.python
|
||||
version = v3.8.0.2
|
||||
version = v3.8.12
|
||||
|
||||
[setup.py]
|
||||
recipe = infi.recipe.template.version
|
||||
|
|
|
@ -292,6 +292,7 @@ class QuerySet(object):
|
|||
Initializer. It is possible to create a queryset like this, but the standard
|
||||
way is to use `MyModel.objects_in(database)`.
|
||||
"""
|
||||
self.model = model_cls
|
||||
self._model_cls = model_cls
|
||||
self._database = database
|
||||
self._order_by = []
|
||||
|
|
Loading…
Reference in New Issue
Block a user