improved modification detection algorithm - for mssql

This commit is contained in:
Jan Prochazka
2021-05-15 21:14:00 +02:00
parent 2eb1c04fcf
commit cf5afb43eb
3 changed files with 100 additions and 66 deletions

View File

@@ -78,6 +78,6 @@ export interface DatabaseModification {
oldName?: NamedObjectInfo;
newName?: NamedObjectInfo;
objectId?: string;
action: 'add' | 'remove' | 'change';
action: 'add' | 'remove' | 'change' | 'all';
objectTypeField: keyof DatabaseInfo;
}