using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace HrynCo.NotificationService.DAL.EF.Migrations { /// public partial class PendingChanges : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddForeignKey( name: "FK_email_channel_usage_email_channels_provider_id", table: "email_channel_usage", column: "provider_id", principalTable: "email_channels", principalColumn: "id", onDelete: ReferentialAction.Cascade); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_email_channel_usage_email_channels_provider_id", table: "email_channel_usage"); } } }