Skip to content

Commit

Permalink
Fix comment in sqlx migrate add help (#2847)
Browse files Browse the repository at this point in the history
The old description for the `sequential` flag read "If set, use *timestamp* versioning".
I guess this was a simple copy-paste error.
  • Loading branch information
cryeprecision authored Nov 4, 2023
1 parent 9dbd52c commit 220bf93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqlx-cli/src/opt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
Expand Down

0 comments on commit 220bf93

Please sign in to comment.