1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2026-02-05 18:54:03 +00:00

Add --schema-path to migration parameters config

This commit is contained in:
lukinovec 2022-10-25 17:23:43 +02:00
parent 8c34640948
commit 0a3e4f9273

View file

@ -258,6 +258,7 @@ return [
'migration_parameters' => [ 'migration_parameters' => [
'--force' => true, // This needs to be true to run migrations in production. '--force' => true, // This needs to be true to run migrations in production.
'--path' => [database_path('migrations/tenant')], '--path' => [database_path('migrations/tenant')],
'--schema-path' => database_path('schema/tenant-schema.dump'),
'--realpath' => true, '--realpath' => true,
], ],