0

aerich configs に問題があります:

app/database.py次の内容のファイルがあります。

TORTOISE_ORM = {
    "connections": {"default": "postgres://..."},
    "apps": {
        "models": {
            "models": ["app.models", "aerich.models"],
            "default_connection": "default",
        },
    },
}

また、亀のテーブルを含む python パッケージが にありapp/models/...ます。次のコマンドを使用して、最初の移行ファイルを作成しようとしています。

  1. aerich init -t app.database.TORTOISE_ORMそして、私は私の中にデータを取得していますpyproject.toml:
[tool.aerich]
tortoise_orm = "app.database.TORTOISE_ORM"
location = "./migrations"
src_folder = "./."
  1. その後、実行しようとしてaerich init-dbいますが、エラーが発生tortoise.exceptions.ConfigurationError: Module "app.models" not found しています。この構成を変更するためにさまざまなバリエーションを試しましたが、同じエラーが発生しました。aerichのバージョン==^0.6.2

誰もが何が悪いのか知っていますか?

4

0 に答える 0