Alanren/new column properties (#1278)

* new column properties

* add description
This commit is contained in:
Alan Ren
2021-11-02 18:50:52 -07:00
committed by GitHub
parent 42fe871f27
commit e33caf38c4
3 changed files with 14 additions and 0 deletions

View File

@@ -16,6 +16,10 @@ namespace Microsoft.SqlTools.ServiceLayer.TableDesigner.Contracts
public InputBoxProperties Length { get; set; } = new InputBoxProperties();
public InputBoxProperties Scale { get; set; } = new InputBoxProperties();
public InputBoxProperties Precision { get; set; } = new InputBoxProperties();
public CheckBoxProperties AllowNulls { get; set; } = new CheckBoxProperties();
public InputBoxProperties DefaultValue { get; set; } = new InputBoxProperties();