add column properties (#17574)

This commit is contained in:
Alan Ren
2021-11-02 18:50:44 -07:00
committed by GitHub
parent 312b410fff
commit a3a91fbdfc
4 changed files with 43 additions and 11 deletions

View File

@@ -1098,7 +1098,9 @@ declare module 'azdata' {
Length = 'length',
Name = 'name',
Type = 'type',
IsPrimaryKey = 'isPrimaryKey'
IsPrimaryKey = 'isPrimaryKey',
Precision = 'precision',
Scale = 'scale'
}
/**
@@ -1117,6 +1119,10 @@ declare module 'azdata' {
* Additional tabs.
*/
additionalTabs?: DesignerTab[];
/**
* The properties to be displayed in the columns table. Default values are: Name, Type, Length, Precision, Scale, IsPrimaryKey, AllowNulls, DefaultValue.
*/
columnsTableProperties?: string[];
}
/**
@@ -1148,6 +1154,11 @@ declare module 'azdata' {
* The property name
*/
propertyName: string;
/**
* The description of the property
*/
description?: string;
/**
* The component type
*/