From 2bc275654b4162dd6414f9dd5959c5f728b628fb Mon Sep 17 00:00:00 2001 From: Bhanu <8525040+bhanu951@users.noreply.github.com> Date: Wed, 16 Oct 2024 10:37:37 +0530 Subject: [PATCH] Issue #186 : Update DGG to place migration yml in migrations directory instead of migration directory --- src/Command/Yml/Migration.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Command/Yml/Migration.php b/src/Command/Yml/Migration.php index 5a35f63d6..4ed704f13 100644 --- a/src/Command/Yml/Migration.php +++ b/src/Command/Yml/Migration.php @@ -89,7 +89,7 @@ protected function generate(array &$vars, Assets $assets): void { $vars['fields'] = \array_keys($field_map[$entity_type] ?? []); } - $assets->addFile('migration/{plugin_id}.yml', 'migration.twig'); + $assets->addFile('migrations/{plugin_id}.yml', 'migration.twig'); } }