mong support WIP

This commit is contained in:
Jan Prochazka
2021-04-02 18:40:07 +02:00
parent d4bd6e03c9
commit 394c6028c9
19 changed files with 347 additions and 10 deletions

View File

@@ -49,7 +49,7 @@ export class DatabaseAnalyser {
}
const res = {};
for (const field of ['tables', 'views', 'functions', 'procedures', 'triggers']) {
for (const field of ['tables', 'collections', 'views', 'functions', 'procedures', 'triggers']) {
const removedIds = this.modifications
.filter(x => x.action == 'remove' && x.objectTypeField == field)
.map(x => extractObjectId(x));
@@ -78,6 +78,7 @@ export class DatabaseAnalyser {
static createEmptyStructure(): DatabaseInfo {
return {
tables: [],
collections: [],
views: [],
functions: [],
procedures: [],