-
更新至最新版本后,发送`setu`命令出现报错:
(/st-r是自己加了命令别名)
```log
07-01 21:51:04 [SUCCESS] nonebot | OneBot V11 292****540 | [message.group.normal]: Message -66702554 from 174****912@[群:100****102] '/st-r'
07-01 2…
-
**Is your feature request related to a problem? Please describe.**
It would be nice for Tortoise ORM to support string queries to make it easier to implement search functionality in web applications
…
-
Hi everyone! First of all, thanks for maintaining such a great ORM! =)
I have a single question: Is there a way have something similar to a [CompositeField](https://pypi.org/project/django-composite-…
-
**Describe the bug**
It is not possible to temporary set None to non nullable fields using Model(**dict)
**To Reproduce**
```
from typing import Optional, List
from tortoise import Tortoise…
-
**Describe the bug**
As you may know, I'm working on a schema sync to MySQL which should work with Tortoise ORM. For this to work good the schema that Tortoise generate should be as close to the resu…
-
**Describe the bug**
A clear and concise description of what the bug is.
the example models look like this
```
class B(Model):
id = fields.UUIDField(pk=True)
class A(Model):
the_b = f…
-
Hi! I'm try to use compute field in fastapi admin.
def full_name(self) -> str:
return self.first_name + ' ' + self.last_name
resource description:
ComputeField(
n…
-
**Describe the bug**
When I starting my FastApi application happened this bug
Cannot import name 'ClickHouseQuery' from 'pypika.dialetcs'
Python 3.10 , postgres 13.0
My dependencies is
torto…
-
I need to retrieve the latest record in the DB for certain device and to do that I need to use SQL DISTINCT feature.
Now I saw that the Tortoise package have distinct method but I didn't find a usa…
-
**Is your feature request related to a problem? Please describe.**
I am running a project with `FastAPI` and `Pydantic`, when I find that I often want to implement custom `from_queryset`, `from_torto…