What you could do is put the new migrations in a separate and different folder then the already existing migrations, for example /database/migrations-v2
In your laravel app.php config file you can then add
'run_v2_migrations' => (bool) env('RUN_V2_MIGRATIONS', false),
Then in AppServiceProvider you add this inside of the boot method
if (config('app.run_v2_migrations')) $this->loadMigrationsFrom(base_path("database/migrations-v2"));
This will run the v2 migrations when the config value is set to true. Not sure if there are other solutions but this is easy to implement.