You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
721 B

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

TORTOISE_ORM = {
# "connections": {"default": "mysql://root:123456@127.0.0.1:3306/shceduler?charset=utf8mb4"}, # MySQL
# "connections": {"default": "sqlite://db.sqlite3"}, # sqlite
"connections": {"default": "mysql://root:123456@127.0.0.1:3306/agv?charset=utf8mb4"}, # MySQL
"apps": {
# 模型分组名字当需要使用此app下的模型的时候需使用 此名字.模型名称
"models": {
# 须添加"aerich.models", 此时会在数据库中生成一个名为aerich的表用于存模型信息以便以后做脚本迁移
"models": ["aerich.models", "models"], # 模型所在的py文件
"default_connection": "default"
}
}
}