-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathcli.rs
54 lines (41 loc) · 1.27 KB
/
cli.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
//! Defines the CLI application
use std::path::PathBuf;
use clap::{Args, Parser};
#[derive(Parser)]
#[clap(version)]
pub enum Cli {
/// Run the refinery setup hooks to generate the config file
Setup,
/// Refinery's main migrate operation
Migrate(MigrateArgs),
}
#[derive(Args)]
pub struct MigrateArgs {
/// Config file location
#[clap(short, default_value = "./refinery.toml")]
pub config: PathBuf,
/// Migrations directory path
#[clap(short, default_value = "./migrations")]
pub path: PathBuf,
/// Load database from the given environment variable
#[clap(short)]
pub env_var: Option<String>,
/// Run migrations grouped in a single transaction
#[clap(short)]
pub grouped: bool,
/// Do not actually run migrations, just create and update refinery's schema migration table
#[clap(short)]
pub fake: bool,
/// Migrate to the specified target version
#[clap(short)]
pub target: Option<u32>,
/// Set migration table name
#[clap(long, default_value = "refinery_schema_history")]
pub table_name: String,
/// Should abort if divergent migrations are found
#[clap(short)]
pub divergent: bool,
/// Should abort if missing migrations are found
#[clap(short)]
pub missing: bool,
}