Add context menu entries for deleting a database (#22948)

This commit is contained in:
Cory Rivera
2023-05-05 12:12:35 -07:00
committed by GitHub
parent 0dc05a6a4c
commit 27e0d67dec
6 changed files with 117 additions and 4 deletions

View File

@@ -1300,6 +1300,22 @@ declare module 'mssql' {
*/
schema: string | undefined;
}
export interface Database extends SqlObject {
owner?: string;
collationName?: string;
recoveryModel?: string;
compatibilityLevel?: string;
containmentType?: string;
}
export interface DatabaseViewInfo extends ObjectViewInfo<Database> {
loginNames: string[];
collationNames: string[];
compatibilityLevels: string[];
containmentTypes: string[];
recoveryModels: string[];
}
}
export interface IObjectManagementService {