From 0a3e4f92732b3073ca1f566c2ef823e902524b96 Mon Sep 17 00:00:00 2001 From: lukinovec Date: Tue, 25 Oct 2022 17:23:43 +0200 Subject: [PATCH] Add --schema-path to migration parameters config --- assets/config.php | 1 + 1 file changed, 1 insertion(+) diff --git a/assets/config.php b/assets/config.php index eb68d9b0..0e035953 100644 --- a/assets/config.php +++ b/assets/config.php @@ -258,6 +258,7 @@ return [ 'migration_parameters' => [ '--force' => true, // This needs to be true to run migrations in production. '--path' => [database_path('migrations/tenant')], + '--schema-path' => database_path('schema/tenant-schema.dump'), '--realpath' => true, ],