mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-03 01:25:44 -05:00
new table designer features (#1420)
* support graph table types * more fixes * refresh view upon edit * support temporal tables * temporal and memory table * primary key and default constraint * bug fixes * dispose table designer * vbump dacfx * update string
This commit is contained in:
@@ -2246,7 +2246,7 @@ SqlForeignKeyAction_NoAction = No Action
|
||||
SqlForeignKeyAction_Cascade = Cascade
|
||||
SqlForeignKeyAction_SetNull = Set Null
|
||||
SqlForeignKeyAction_SetDefault = Set Default
|
||||
UnKnownSqlForeignKeyAction(string name) = '{0}' is not a supported SqlForeignKeyAction.
|
||||
UnknownEnumString(string name) = Unknown enum value: {0}.
|
||||
CheckConstraintIsEnabledDescription = Specifies whether the check constraint is Enabled
|
||||
IndexIsEnabledPropertyDescription = Specifies whether the index is enabled
|
||||
IndexIsClusteredPropertyDescription = Whether the index is clustered, only one clustered index is allowed in a table.
|
||||
@@ -2257,3 +2257,47 @@ IndexColumnIsAscendingPropertyDescription = Specifies the sort order of the colu
|
||||
IndexColumnIsAscendingPropertyTitle = Is Ascending
|
||||
TableDesignerColumnsDisplayValueTitle = Columns
|
||||
TableDesignerDeleteColumnConfirmationMessage = Removing a column will also remove it from the indexes and foreign keys. Are you sure you want to continue?
|
||||
TableDesignerGraphTableGroupTitle = Graph Table
|
||||
TableDesignerGraphTableTypeTitle = Type
|
||||
TableDesignerGraphTableTypeDescription = Specifies the table type.
|
||||
TableDesignerGraphTableTypeEdge = Edge
|
||||
TableDesignerGraphTableTypeNode = Node
|
||||
TableDesignerGraphTableTypeNone = None
|
||||
TableDesignerEdgeConstraintsTabTitle = Edge Constraints
|
||||
TableDesignerEdgeConstraintObjectType = Edge Constraint
|
||||
TableDesignerEdgeConstraintNamePropertyDescription = Name of the constraint.
|
||||
TableDesignerEdgeConstraintNamePropertyTitle = Name
|
||||
TableDesignerEdgeConstraintIsEnabledPropertyDescription = Specifies whether the constraint is enabled.
|
||||
TableDesignerEdgeConstraintIsEnabledPropertyTitle = Is Enabled
|
||||
TableDesignerEdgeConstraintOnDeleteActionPropertyDescription = The behavior when a user tries to delete a row with data that is involved in an edge constraint.
|
||||
TableDesignerEdgeConstraintOnDeleteActionPropertyTitle = On Delete Action
|
||||
TableDesignerEdgeConstraintClausesPropertyDescription = Edge constraint clauses.
|
||||
TableDesignerEdgeConstraintClausesPropertyTitle = Clauses
|
||||
TableDesignerEdgeConstraintClauseObjectType = Clause
|
||||
TableDesignerEdgeConstraintClauseFromTablePropertyName = From Table
|
||||
TableDesignerEdgeConstraintClauseToTablePropertyName = To Table
|
||||
SqlTableDurability_SchemaAndData = Schema and Data
|
||||
SqlTableDurability_SchemaOnly = Schema Only
|
||||
GeneratedAlwaysColumnType_None = None
|
||||
GeneratedAlwaysColumnType_RowStart = Row start
|
||||
GeneratedAlwaysColumnType_RowEnd = Row End
|
||||
TableDesignerIsSystemVersioningEnabledTitle = System Versioning Enabled
|
||||
TableDesignerIsSystemVersioningEnabledDescription = Specifies whether the table is system versioning enabled.
|
||||
TableDesignerSystemVersioningGroupTitle = System Versioning
|
||||
TableDesignerHistoryTableDescription = History table of the current table.
|
||||
TableDesignerHistoryTableTitle = History Table
|
||||
TableDesignerIsMemoryOptimizedDescription = Specifies whether the table is memory optimized.
|
||||
TableDesignerMemoryOptimizedGroupTitle = Memory Optimized
|
||||
TableDesignerIsMemoryOptimizedTitle = Memory Optimized
|
||||
TableDesignerDurabilityDescription = Specifies the durability setting of the table.
|
||||
TableDesignerDurabilityTitle = Durability
|
||||
TableDesignerColumnGeneratedAlwaysAsDescription = Specifies the start or end of the system versioning table's period setting.
|
||||
TableDesignerColumnGeneratedAlwaysAsTitle = Generated Always As
|
||||
TableDesignerColumnIsHiddenTitle = Is Hidden
|
||||
TableDesignerColumnIsHiddenDescription = Specifies whether the column will be returned by select statement.
|
||||
TableDesignerAutoCreateHistoryTableDescription = Specifies whether the engine should automatically create the history table.
|
||||
TableDesignerAutoCreateHistoryTableTitle = Auto Create History Table
|
||||
TableDesignerNewHistoryTableDescription = Specifies the name of the new history table.
|
||||
TableDesignerNewHistoryTableTitle = New History Table Name
|
||||
TableColumnDefaultConstraintNamePropertyDescription = Specifies the default constraint name.
|
||||
TableColumnDefaultConstraintNamePropertyTitle = Default Constraint Name
|
||||
Reference in New Issue
Block a user