Good afternoon.
I would like to know and confirm if you have any way to update table and column definitions in each schema using Hibernate.
For now, what I've seen so far is that Hibernate only creates tables and columns, but does not delete or modify its settings, such as the size of a field.
I have already implemented Flyway in the application and it is working correctly, but the idea is that this is done without creating a SQL script to go through the schemas and that Hibernate identifies the settings that need to be changed, tables and fields that need be created and enforced in the database for each schema.
Thank you in advance.