aerich configs に問題があります:
app/database.py
次の内容のファイルがあります。
TORTOISE_ORM = {
"connections": {"default": "postgres://..."},
"apps": {
"models": {
"models": ["app.models", "aerich.models"],
"default_connection": "default",
},
},
}
また、亀のテーブルを含む python パッケージが にありapp/models/...
ます。次のコマンドを使用して、最初の移行ファイルを作成しようとしています。
aerich init -t app.database.TORTOISE_ORM
そして、私は私の中にデータを取得していますpyproject.toml
:
[tool.aerich]
tortoise_orm = "app.database.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."
- その後、実行しようとして
aerich init-db
いますが、エラーが発生tortoise.exceptions.ConfigurationError: Module "app.models" not found
しています。この構成を変更するためにさまざまなバリエーションを試しましたが、同じエラーが発生しました。aerichのバージョン==^0.6.2
誰もが何が悪いのか知っていますか?