mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-17 09:35:37 -05:00
add column properties (#17574)
This commit is contained in:
13
src/sql/azdata.proposed.d.ts
vendored
13
src/sql/azdata.proposed.d.ts
vendored
@@ -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
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user