1 Star 0 Fork 4

green_hand_wu/flask-restful-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
init_db.py 423 Bytes
一键复制 编辑 原始数据 按行查看 历史
xuda 提交于 2020-03-31 16:20 . 初始化数据库
from app_demo.config import create_app
def init_db(mysql_db='default'):
from app_demo.config import db
# 初始化数据祝 如果models里的对象无任何引用,刚不会创建表结构
from app_demo.models.user import User
from app_demo.models.office import Office
app = create_app(mysql_db)
app.app_context().push()
db.drop_all()
db.create_all()
db.session.commit()
init_db()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/green-hand-wu/flask-restful-demo.git
git@gitee.com:green-hand-wu/flask-restful-demo.git
green-hand-wu
flask-restful-demo
flask-restful-demo
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385