Possibly an edge case, but I am working on a large-scale migration where we need to keep a legacy database running whilst upgrading parts of it in phases to Laravel. Both databases will reside on the same server during this development.
We have been migrating a selection of tables at a time, and in one case we are looking at generating a temporary relationship between a table in the new database and a table in the legacy database.
See the 2 many-to-many relationships coming from Organisation below.

For LegacyUserHasOrganisation, I want the relationship definitions on the model, but I want to avoid physically setting the foreign keys on the legacy database.
I'm able to manually simulate this behaviour by commenting out the foreign key generation in the migration file, e.g.
// Schema::table('legacy_user_has_organisation', function (Blueprint $table) {
// $table->foreign('organisation_id')->references('id')->on('organisations');
// $table->foreign('user_id')->references('User_Id')->on('users');
// });
Does functionality like this already exist in Skipper, or can it be added in a future release?