如果表不存在,如何修复删除外键

时间:2019-05-12 11:04:19

标签: java spring hibernate spring-boot

我正在启动Application类,并在.properties文件中包含该字符串: spring.jpa.hibernate.ddl-auto=create-drop

这些查询非常好,效果很好: drop table if exists costs

但是,在日志的最开始有以下查询: alter table tariffs_options drop foreign key FK

并且它们当然会失败,因为db不包含任何内容(由于策略create-drop

我应该如何解决?

0 个答案:

没有答案