add connectionOptions for tables selection
This commit is contained in:
parent
82c2122bcf
commit
1563830771
@ -17,6 +17,7 @@ export default interface IConnectionOptions {
|
||||
schemaName: string;
|
||||
ssl: boolean;
|
||||
skipTables: string[];
|
||||
tables: string[];
|
||||
}
|
||||
|
||||
export function getDefaultConnectionOptions(): IConnectionOptions {
|
||||
@ -30,6 +31,7 @@ export function getDefaultConnectionOptions(): IConnectionOptions {
|
||||
schemaName: "",
|
||||
ssl: false,
|
||||
skipTables: [],
|
||||
tables: [],
|
||||
};
|
||||
return connectionOptions;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user