manually merging

This commit is contained in:
Shannon
2018-11-20 14:11:35 +11:00
parent f7f81945a0
commit b4c2c8bd74
4 changed files with 10 additions and 8 deletions

View File

@@ -16,11 +16,6 @@ namespace Umbraco.Core.Persistence.DatabaseModelDefinitions
public virtual string TableName { get; set; }
public virtual string ColumnName { get; set; }
[Obsolete("Use the IndexType property instead and set it to IndexTypes.UniqueNonClustered")]
public virtual bool IsUnique { get; set; }
[Obsolete("Use the IndexType property instead and set it to IndexTypes.Clustered")]
public bool IsClustered { get; set; }
public virtual ICollection<IndexColumnDefinition> Columns { get; set; }
public IndexTypes IndexType { get; set; }
}