using OpenDBDiff.Abstractions.Schema; using System; namespace OpenDBDiff.SqlServer.Schema.Model { public class TablePartition : SQLServerSchemaBase { public TablePartition(Table parent) : base(parent, ObjectType.Partition) { } public string CompressType { get; set; } public override string ToSql() { throw new NotImplementedException(); } public override string ToSqlDrop() { throw new NotImplementedException(); } public override string ToSqlAdd() { throw new NotImplementedException(); } } }