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.

31 lines
640 B

using System;
namespace OpenDBDiff.Schema.SQLServer.Generates.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();
}
}
}