mirror of
https://github.com/launchbadge/sqlx
synced 2024-11-10 06:24:16 +00:00
Remove redundant args default notice
This commit is contained in:
parent
d4a7217a56
commit
be88631b5e
1 changed files with 3 additions and 3 deletions
|
@ -69,14 +69,14 @@ pub enum DatabaseCommand {
|
|||
#[clap(short)]
|
||||
yes: bool,
|
||||
|
||||
/// Path to folder containing migrations. Defaults to 'migrations'
|
||||
/// Path to folder containing migrations.
|
||||
#[clap(long, default_value = "migrations")]
|
||||
source: String,
|
||||
},
|
||||
|
||||
/// Creates the database specified in your DATABASE_URL and runs any pending migrations.
|
||||
Setup {
|
||||
/// Path to folder containing migrations. Defaults to 'migrations'
|
||||
/// Path to folder containing migrations.
|
||||
#[clap(long, default_value = "migrations")]
|
||||
source: String,
|
||||
},
|
||||
|
@ -85,7 +85,7 @@ pub enum DatabaseCommand {
|
|||
/// Group of commands for creating and running migrations.
|
||||
#[derive(Clap, Debug)]
|
||||
pub struct MigrateOpt {
|
||||
/// Path to folder containing migrations. Defaults to 'migrations'
|
||||
/// Path to folder containing migrations.
|
||||
#[clap(long, default_value = "migrations")]
|
||||
pub source: String,
|
||||
|
||||
|
|
Loading…
Reference in a new issue