From ee144d4a9be04f80770d99ad4b592f033e84db20 Mon Sep 17 00:00:00 2001 From: Merlin <158784988+merlinz01@users.noreply.github.com> Date: Wed, 7 Aug 2024 13:32:49 -0400 Subject: [PATCH] update migrate output for consistency --- aerich/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aerich/cli.py b/aerich/cli.py index 17f30dd..cfb56eb 100644 --- a/aerich/cli.py +++ b/aerich/cli.py @@ -69,7 +69,7 @@ async def migrate(ctx: Context, name, empty) -> None: ret = await command.migrate(name, empty) if not ret: return click.secho("No changes detected", fg=Color.yellow) - click.secho(f"Successfully created migration file {ret}", fg=Color.green) + click.secho(f"Success creating migration file {ret}", fg=Color.green) @cli.command(help="Upgrade to specified migration version.")