spring-data (踩坑记录) --- 默认mysql引擎为myisam
修改表和库
https://www.cnblogs.com/afish/p/3969756.html
select CONCAT('alter table ',table_name,' engine=InnoDB;') FROM information_schema.tables WHERE table_schema="数据库名" AND ENGINE="MyISAM";
ALTER TABLE `apigateway-ai`.`ai_person` ENGINE = InnoDB;