We are having issues with Postgres flyway scripts where we create sequence without WITH in the SQL statement which is optional in Postgres. For example,
CREATE SEQUENCE seq START 100 INCREMENT 1;
With the update of H2 db 2.x, we are getting syntax errors. Since these are flyway scripts, we cannot easily update the scripts without messing up the hash. Any workaround or update to this?