Remove redundant args default notice

This commit is contained in:
Kitsu 2021-04-24 16:21:43 +03:00 committed by Ryan Leckey
parent d4a7217a56
commit be88631b5e

View file

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