flask-sqlacodegen使用

景辰钊
2023-12-01

执行命令

flask-sqlacodegen "postgresql://postgres:postgres@localhost:5432/tea_weather" --tables user --outfile "common/models/user.py"  --flask

postgresql - 数据库类型(不同数据库不一样)

postgres:postgres - 用户名密码

localhost - 数据库服务所在IP

5432 - 数据库监听端口

tea_weather- 数据库名

user - 表名

“common/models/user.py” - 要生成模型文件的位置

 类似资料: