We had multiple issues throughout the projects that were continuously developed. The DB schema can change at any time and we need to check if the schema is correct before using the db connection.
Instead of manual reconfiguration of the DB, we should allow developers to write DB migration scripts with versions (or dates), which will be automatically executed by the helper scripts when the server starts (they will just skip if the database version is already up to date)
We had multiple issues throughout the projects that were continuously developed. The DB schema can change at any time and we need to check if the schema is correct before using the db connection.
Instead of manual reconfiguration of the DB, we should allow developers to write DB migration scripts with versions (or dates), which will be automatically executed by the helper scripts when the server starts (they will just skip if the database version is already up to date)