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.
This commit is contained in:
Rico 2023-11-04 01:23:36 +01:00 committed by GitHub
parent 9dbd52c9b3
commit 220bf93dc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,
},