diff --git a/migra-cli/src/commands/make.rs b/migra-cli/src/commands/make.rs index d24f97d..d02cfd7 100644 --- a/migra-cli/src/commands/make.rs +++ b/migra-cli/src/commands/make.rs @@ -41,5 +41,10 @@ pub(crate) fn make_migration(config: Config, opts: MakeCommandOpt) -> StdResult< )?; } + println!( + "Structure for migration has been created in the {}", + migration_dir_path.to_str().unwrap() + ); + Ok(()) }