Tortoise ORM 创建自定义索引。 aerich迁移的问题

Tortoise ORM create custom index. Problem with aerich migration

我创建了一个自定义索引 UniqueIndexWithCondition。 运行 这个命令

aerich migrate --name initial_commit

回复:

AttributeError: 'UniqueIndexWithCondition' object has no attribute 'index_name'

代码示例: 我的自定义索引

class UniqueIndexWithCondition(Index):
    ...

只需重新声明一个 index_name(self, *args, **kwargs)