SurveyVista/Web/Migrations/20240510162258_SentNewsletterRemove.cs
2024-05-10 20:37:42 +02:00

50 lines
1.6 KiB
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Web.Migrations
{
/// <inheritdoc />
public partial class SentNewsletterRemove : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_SentNewsletterEamils_Subscriptions_SubscriptionId",
table: "SentNewsletterEamils");
migrationBuilder.DropIndex(
name: "IX_SentNewsletterEamils_SubscriptionId",
table: "SentNewsletterEamils");
migrationBuilder.DropColumn(
name: "SubscriptionId",
table: "SentNewsletterEamils");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "SubscriptionId",
table: "SentNewsletterEamils",
type: "int",
nullable: false,
defaultValue: 0);
migrationBuilder.CreateIndex(
name: "IX_SentNewsletterEamils_SubscriptionId",
table: "SentNewsletterEamils",
column: "SubscriptionId");
migrationBuilder.AddForeignKey(
name: "FK_SentNewsletterEamils_Subscriptions_SubscriptionId",
table: "SentNewsletterEamils",
column: "SubscriptionId",
principalTable: "Subscriptions",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
}
}
}