feat: 后端配置文件新增sqlalchemy日志开关配置

This commit is contained in:
insistence
2024-04-02 09:50:38 +08:00
parent f73a00e73c
commit 84f56da523
4 changed files with 6 additions and 1 deletions

View File

@@ -38,6 +38,7 @@ class DataBaseSettings(BaseSettings):
db_username: str = 'root'
db_password: str = 'mysqlroot'
db_database: str = 'ruoyi-fastapi'
db_echo: bool = True
class RedisSettings(BaseSettings):