mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-13 19:48:34 -05:00
table designer - support second level entities (#1381)
* support secondary entities * new table info for existing table scenario * delete column confirmation * vbump Dacfx
This commit is contained in:
@@ -18,7 +18,7 @@ namespace Microsoft.SqlTools.ServiceLayer.TableDesigner.Contracts
|
||||
|
||||
public DropdownProperties OnUpdateAction { get; set; } = new DropdownProperties();
|
||||
|
||||
public DropdownProperties PrimaryKeyTable { get; set; } = new DropdownProperties();
|
||||
public DropdownProperties ForeignTable { get; set; } = new DropdownProperties();
|
||||
|
||||
public CheckBoxProperties IsNotForReplication { get; set; } = new CheckBoxProperties();
|
||||
|
||||
@@ -27,8 +27,8 @@ namespace Microsoft.SqlTools.ServiceLayer.TableDesigner.Contracts
|
||||
|
||||
public class ForeignKeyColumnMapping
|
||||
{
|
||||
public DropdownProperties PrimaryKeyColumn { get; set; } = new DropdownProperties();
|
||||
public DropdownProperties Column { get; set; } = new DropdownProperties();
|
||||
|
||||
public DropdownProperties ForeignKeyColumn { get; set; } = new DropdownProperties();
|
||||
public DropdownProperties ForeignColumn { get; set; } = new DropdownProperties();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user