You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug description
Documentation is incomplete: Spring Batch 5.0 Migration Guide
§Database schema updates > All platforms
It misses the migration step of renaming a column (or what I did for backward compatibility, add a new column). The doc should states something like:
Column change in BATCH_STEP_EXECUTION
The column START_TIME was renamed in CREATE_TIME. Rename it according to your database server, something like:
ALTER TABLE BATCH_STEP_EXECUTION RENAME COLUMN START_TIME TO CREATE_TIME;
Environment
Spring Batch 5.0.1, Java 17, database Postgres 14, Spring Boot 3.0.4.
Please provide as many details as possible: Spring Batch version, Java version, which database you use if any, etc