We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
remove
1 parent 72c42ba commit 336e733Copy full SHA for 336e733
src/main.rs
@@ -23,7 +23,6 @@ struct Opts {
23
enum Command {
24
Migrate(MigrateOptions),
25
Complete(ConnectionOptions),
26
- Remove(ConnectionOptions),
27
Abort(ConnectionOptions),
28
GenerateSchemaQuery(FindMigrationsOptions),
29
}
@@ -84,10 +83,6 @@ fn run(opts: Opts) -> anyhow::Result<()> {
84
83
let mut reshape = reshape_from_connection_options(&opts)?;
85
reshape.complete()
86
87
- Command::Remove(opts) => {
88
- let mut reshape = reshape_from_connection_options(&opts)?;
89
- reshape.remove()
90
- }
91
Command::Abort(opts) => {
92
93
reshape.abort()
0 commit comments