SurveyVista/Web/Migrations/20240506120728_SentEmailNewsletterModelAdded.cs
2024-05-09 14:08:10 +02:00

43 lines
1.7 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Web.Migrations
{
/// <inheritdoc />
public partial class SentEmailNewsletterModelAdded : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "SentNewsletterEamils",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
RecipientEmail = table.Column<string>(type: "nvarchar(max)", nullable: true),
Subject = table.Column<string>(type: "nvarchar(max)", nullable: true),
Body = table.Column<string>(type: "nvarchar(max)", nullable: true),
SentDate = table.Column<DateTime>(type: "datetime2", nullable: false),
IsDelivered = table.Column<bool>(type: "bit", nullable: false),
IsOpened = table.Column<bool>(type: "bit", nullable: false),
IsClicked = table.Column<bool>(type: "bit", nullable: false),
IsBounced = table.Column<bool>(type: "bit", nullable: false),
IsSpam = table.Column<bool>(type: "bit", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_SentNewsletterEamils", x => x.Id);
});
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "SentNewsletterEamils");
}
}
}