We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ace0e61 commit a338c02Copy full SHA for a338c02
1 file changed
diesel_cli/src/main.rs
@@ -357,9 +357,9 @@ fn run_infer_schema(matches: &ArgMatches) -> Result<(), Box<Error>> {
357
}
358
359
if matches.is_present("only-tables") || matches.is_present("whitelist") {
360
- config.filter = Filtering::Include(filter)
+ config.filter = Filtering::OnlyTables(filter)
361
} else if matches.is_present("except-tables") || matches.is_present("blacklist") {
362
- config.filter = Filtering::Exclude(filter)
+ config.filter = Filtering::ExceptTables(filter)
363
364
365
if matches.is_present("with-docs") {
0 commit comments