db.create_all()怎么创建表引擎为innodb?
来源:5-3 网易新闻框架搭建
SakuraGaara
2018-05-29
写回答
1回答
-
NavCat
2018-05-30
试下如下配置看看
class News(db.Model): """ 新闻模型 """ __tablename__ = 'news' __table_args__ = { 'mysql_engine': 'InnoDB', # 'mysql_engine': 'MyISAM', 'mysql_charset': 'utf8' }
00
Python操作三大主流数据库-MySQL+MongoDB+Redis
一次实战同时掌握Python操作MySQL,MongoDB,Redis 三大数据库使用技巧
2024 学习 · 376 问题
相似问题