Caused by: org.h2.jdbc.JdbcSQLSyntaxErrorException: Column "start_value" not found 

 

spring.jpa.hibernate.ddl-auto=update

를 update 에서 create로 

spring.jpa.hibernate.ddl-auto=create

 

대부분은 기존 테이블/시퀀스가 꼬인 경우여서 그런거여서 새롭게 다시 만들어주면 해결됩니다. 

+ Recent posts