Files
Umbraco-CMS/src/Umbraco.Infrastructure/Migrations/Expressions/Delete/Constraint/IDeleteConstraintBuilder.cs
2019-12-18 13:42:29 +01:00

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