mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-19 11:31:40 -04:00
Add context menu entries for deleting a database (#22948)
This commit is contained in:
16
extensions/mssql/src/mssql.d.ts
vendored
16
extensions/mssql/src/mssql.d.ts
vendored
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user