标签: java spring hibernate spring-boot
我正在启动Application类,并在.properties文件中包含该字符串: spring.jpa.hibernate.ddl-auto=create-drop
spring.jpa.hibernate.ddl-auto=create-drop
这些查询非常好,效果很好: drop table if exists costs
drop table if exists costs
但是,在日志的最开始有以下查询: alter table tariffs_options drop foreign key FK
alter table tariffs_options drop foreign key FK
并且它们当然会失败,因为db不包含任何内容(由于策略create-drop)
create-drop
我应该如何解决?