chore: print to stdout in make command

... about successfully created directory with structure for
migration
This commit is contained in:
Dmitriy Pleshevskiy 2021-02-21 23:35:55 +03:00
parent 1d8297cec2
commit 6b352c31a2
1 changed files with 5 additions and 0 deletions

View File

@ -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(())
}