1 Star 0 Fork 4

CreateIt/flask-restful-demo

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
init_db.py 423 Bytes
Copy Edit Raw Blame History
xuda authored 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/createit/flask-restful-demo.git
git@gitee.com:createit/flask-restful-demo.git
createit
flask-restful-demo
flask-restful-demo
master

Search

0d507c66 1850385 C8b1a773 1850385