You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MySQL版本:8+
数据库名自己取,编码选择utf8mb4,对应config.yaml下db配置为当前数据库信息即可
查看最大连接数 show variables like 'max_connections';
设置最大连接数 set global max_connections=16384;
3.初始化数据库表结构(项目根目录下依次执行):
3.1、指定app
在 Windows 命令提示符中:set FLASK_APP=main.py
在 Windows PowerShell 中:$env:FLASK_APP="main.py"
在 Linux 或 macOS 的终端中:export FLASK_APP=main.py
3.2、执行数据库迁移
flask db init
flask db migrate
flask db upgrade
如果上面3条命令报错,试试
python -m flask db init
python -m flask db migrate
python -m flask db upgrade