16 lines
443 B
C#
16 lines
443 B
C#
using Umbraco.Core.Migrations.Expressions.Common;
|
|
|
|
namespace Umbraco.Core.Migrations.Expressions.Delete.Constraint
|
|
{
|
|
/// <summary>
|
|
/// Builds a Delete Constraint expression.
|
|
/// </summary>
|
|
public interface IDeleteConstraintBuilder : IFluentBuilder
|
|
{
|
|
/// <summary>
|
|
/// Specifies the table of the constraint to delete.
|
|
/// </summary>
|
|
IExecutableBuilder FromTable(string tableName);
|
|
}
|
|
}
|