Make instanceName optional
This commit is contained in:
parent
00e44027e0
commit
ac6695123b
@ -15,7 +15,7 @@ export default interface IConnectionOptions {
|
||||
| "oracle"
|
||||
| "sqlite";
|
||||
schemaName: string;
|
||||
instanceName: string;
|
||||
instanceName?: string;
|
||||
ssl: boolean;
|
||||
skipTables: string[];
|
||||
onlyTables: string[];
|
||||
@ -30,7 +30,7 @@ export function getDefaultConnectionOptions(): IConnectionOptions {
|
||||
password: "",
|
||||
databaseType: undefined as any,
|
||||
schemaName: "",
|
||||
instanceName: undefined as any,
|
||||
instanceName: undefined,
|
||||
ssl: false,
|
||||
skipTables: [],
|
||||
onlyTables: [],
|
||||
|
Loading…
Reference in New Issue
Block a user