【发布时间】:2022-01-10 21:14:41
【问题描述】:
我正在尝试使用这样的请求向 Postgresql 添加一个条目
insert into customer (id, email, name, number_telephone) VALUES (public.hibernate_sequence_customer.nextval, 'abc@jar.ru' , 'Henry', '89132547898');
,但是flyway会报错
Error: table "hibernate_sequence_customer" is missing in the FROM clause
在项目结构中 enter image description here
【问题讨论】:
标签: postgresql spring-boot flyway