From 1b47f896a768fb6621d9a6ac78bf2a8c4b08fca1 Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sun, 8 Aug 2021 03:11:37 +0800 Subject: [PATCH] Tweaks --- sea-orm-cli/src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sea-orm-cli/src/cli.rs b/sea-orm-cli/src/cli.rs index 5b7f710d..de0313c2 100644 --- a/sea-orm-cli/src/cli.rs +++ b/sea-orm-cli/src/cli.rs @@ -10,7 +10,7 @@ pub fn build_cli() -> App<'static, 'static> { .arg( Arg::with_name("DATABASE_URL") .long("database-url") - .short("url") + .short("u") .help("Database URL") .takes_value(true) .required(true) @@ -19,7 +19,7 @@ pub fn build_cli() -> App<'static, 'static> { .arg( Arg::with_name("DATABASE_SCHEMA") .long("database-schema") - .short("schema") + .short("s") .help("Database schema") .takes_value(true) .required(true)