摘要: 在application.yml配置文件中,找到数据源设置,添加: 或者在含有logging标签配置文件中添加: 阅读全文
posted @ 2019-04-19 22:46 ppjj 阅读(4513) 评论(0) 推荐(0) 编辑
摘要: 1、备份表结构 create table table_bak like table_name; 2、备份表数据 insert into table_bak select * from table_name; 3、删除原来主键字段(如id) alter table table_name drop id 阅读全文
posted @ 2019-04-19 22:03 ppjj 阅读(1737) 评论(0) 推荐(0) 编辑