From f6890a56e3a597ff1418209afe1596ac3435649f Mon Sep 17 00:00:00 2001 From: Elijah Duffy Date: Fri, 13 Jun 2025 18:27:53 -0700 Subject: [PATCH] add -s alias to migrate create command --- cli/cli.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cli/cli.go b/cli/cli.go index f962d84..ccbe07c 100644 --- a/cli/cli.go +++ b/cli/cli.go @@ -59,8 +59,9 @@ func MigrateCreateCmd(sqlo dbx.SQLOFunc, deps appcli.DepFn) *cli.Command { }, Flags: []cli.Flag{ &cli.BoolFlag{ - Name: "sequential", - Usage: "Create migration in sequential mode", + Name: "sequential", + Aliases: []string{"s"}, + Usage: "Create migration in sequential mode", }, }, Action: func(ctx context.Context, cmd *cli.Command) error {