We have a PostgreSQL database, and have defined JavaScript ORM classes using Objection.js. As our database structure has evolved, we have been defining database migrations using Knex. We would now like to 'squash' the migrations, e.g. into a 'latest' migration.
How can we 'squash' Knex migrations and/or generate a new migration using the Objection database classes?