could not read a hi value ‘user.hibernate_sequence’ doesn’t exist
2 Likes
It means your hibernate table sequence is wrong
3 Likes
It means hibernate_sequence not present or created in database.
You may need to manually create the sequence in database
create sequence hibernate_sequence start with 1 increment by 1
2 Likes