Is it possible to add a cascading delete to an existing relationship using FluentMigrator. So could I replace the following two lines with a one-liner?
Delete.ForeignKey("FK_Attachments_Items").OnTable("Attachments");
Create.ForeignKey("FK_Attachments_Items").FromTable("Attachments").ForeignColumn("ItemId").ToTable("Items").PrimaryColumn("Id").OnDeleteOrUpdate(System.Data.Rule.Cascade);