You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
668 B

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();
}
}
}