From 220bf93dc27b13dfa71057a3c997c7a4402e54b4 Mon Sep 17 00:00:00 2001 From: Rico Date: Sat, 4 Nov 2023 01:23:36 +0100 Subject: [PATCH] Fix comment in `sqlx migrate add` help (#2847) The old description for the `sequential` flag read "If set, use *timestamp* versioning". I guess this was a simple copy-paste error. --- sqlx-cli/src/opt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlx-cli/src/opt.rs b/sqlx-cli/src/opt.rs index 7d515850..d2dc0732 100644 --- a/sqlx-cli/src/opt.rs +++ b/sqlx-cli/src/opt.rs @@ -140,7 +140,7 @@ pub enum MigrateCommand { #[clap(short, long)] timestamp: bool, - /// If set, use timestamp versioning for the new migration. Conflicts with `--timestamp`. + /// If set, use sequential versioning for the new migration. Conflicts with `--timestamp`. #[clap(short, long, conflicts_with = "timestamp")] sequential: bool, },