Interface IDeleteForeignKeyOnTableBuilder
Builds a Delete expression.
Namespace: Umbraco.Cms.Infrastructure.Migrations.Expressions.Delete.ForeignKey
Assembly: Umbraco.Infrastructure.dll
Syntax
public interface IDeleteForeignKeyOnTableBuilder : IFluentBuilder
Methods
View SourceOnTable(string)
Specifies the table from which the foreign key will be deleted.
Declaration
IExecutableBuilder OnTable(string foreignTableName)
Parameters
| Type | Name | Description |
|---|---|---|
| string | foreignTableName | The name of the table containing the foreign key to delete. |
Returns
| Type | Description |
|---|---|
| IExecutableBuilder | An executable builder to continue the migration expression. |