mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 01:25:40 -05:00
120 lines
5.0 KiB
C#
120 lines
5.0 KiB
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.TableDesigner
|
|
{
|
|
public static class TablePropertyNames
|
|
{
|
|
public const string Name = "name";
|
|
public const string Schema = "schema";
|
|
public const string Description = "description";
|
|
public const string Columns = "columns";
|
|
public const string ForeignKeys = "foreignKeys";
|
|
public const string CheckConstraints = "checkConstraints";
|
|
public const string Indexes = "indexes";
|
|
public const string EdgeConstraints = "edgeConstraints";
|
|
public const string GraphTableType = "graphTableType";
|
|
public const string IsSystemVersioningEnabled = "isSystemVersioningEnabled";
|
|
public const string AutoCreateHistoryTable = "autoCreateHistoryTable";
|
|
public const string NewHistoryTableTable = "newHistoryTableName";
|
|
public const string ExistingHistoryTableName = "existingHistoryTable";
|
|
public const string IsMemoryOptimized = "isMemoryOptimized";
|
|
public const string Durability = "durability";
|
|
public const string PrimaryKeyName = "primaryKeyName";
|
|
public const string PrimaryKeyDescription = "primaryKeyDescription";
|
|
public const string PrimaryKeyIsClustered = "primaryKeyIsClustered";
|
|
public const string PrimaryKeyColumns = "primaryKeyColumns";
|
|
}
|
|
|
|
public static class TableColumnPropertyNames
|
|
{
|
|
public const string Name = "name";
|
|
public const string Description = "description";
|
|
public const string AdvancedType = "advancedType";
|
|
public const string Type = "type";
|
|
public const string DefaultValue = "defaultValue";
|
|
public const string Length = "length";
|
|
public const string AllowNulls = "allowNulls";
|
|
public const string IsPrimaryKey = "isPrimaryKey";
|
|
public const string Precision = "precision";
|
|
public const string Scale = "scale";
|
|
public const string IsIdentity = "isIdentity";
|
|
public const string IdentityIncrement = "identityIncrement";
|
|
public const string IdentitySeed = "identitySeed";
|
|
public const string IsComputed = "isComputed";
|
|
public const string ComputedFormula = "computedFormula";
|
|
public const string IsComputedPersisted = "isComputedPersisted";
|
|
public const string IsComputedPersistedNullable = "isComputedPersistedNullable";
|
|
public const string CanBeDeleted = "canBeDeleted";
|
|
public const string GeneratedAlwaysAs = "generatedAlwaysAs";
|
|
public const string IsHidden = "isHidden";
|
|
public const string DefaultConstraintName = "defaultConstraintName";
|
|
}
|
|
|
|
public static class ForeignKeyPropertyNames
|
|
{
|
|
public const string Name = "name";
|
|
public const string Description = "description";
|
|
public const string Enabled = "enabled";
|
|
public const string OnDeleteAction = "onDeleteAction";
|
|
public const string OnUpdateAction = "onUpdateAction";
|
|
public const string ColumnMapping = "columns";
|
|
public const string ForeignTable = "foreignTable";
|
|
public const string IsNotForReplication = "isNotForReplication";
|
|
}
|
|
|
|
public static class CheckConstraintPropertyNames
|
|
{
|
|
public const string Name = "name";
|
|
public const string Description = "description";
|
|
public const string Enabled = "enabled";
|
|
public const string Expression = "expression";
|
|
}
|
|
|
|
public static class ForeignKeyColumnMappingPropertyNames
|
|
{
|
|
public const string Column = "column";
|
|
public const string ForeignColumn = "foreignColumn";
|
|
}
|
|
|
|
public static class IndexPropertyNames
|
|
{
|
|
public const string Name = "name";
|
|
public const string Description = "description";
|
|
public const string Enabled = "enabled";
|
|
public const string IsUnique = "isUnique";
|
|
public const string IsClustered = "isClustered";
|
|
public const string Columns = "columns";
|
|
public const string IncludedColumns = "includedColumns";
|
|
public const string FilterPredicate = "filterPredicate";
|
|
public const string ColumnsDisplayValue = "columnsDisplayValue";
|
|
}
|
|
|
|
public static class IndexColumnSpecificationPropertyNames
|
|
{
|
|
public const string Column = "column";
|
|
public const string Ascending = "ascending";
|
|
}
|
|
|
|
public static class IndexIncludedColumnSpecificationPropertyNames
|
|
{
|
|
public const string Column = "column";
|
|
}
|
|
|
|
public static class EdgeConstraintPropertyNames
|
|
{
|
|
public const string Name = "name";
|
|
public const string Enabled = "enabled";
|
|
public const string Clauses = "clauses";
|
|
public const string OnDeleteAction = "onDeleteAction";
|
|
public const string ClausesDisplayValue = "clausesDisplayValue";
|
|
}
|
|
|
|
public static class EdgeConstraintClausePropertyNames
|
|
{
|
|
public const string FromTable = "fromTable";
|
|
public const string ToTable = "toTable";
|
|
}
|
|
} |