using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace API.Data.Migrations
{
///
public partial class EmailHistory : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "EmailHistory",
columns: table => new
{
Id = table.Column(type: "INTEGER", nullable: false)
.Annotation("Sqlite:Autoincrement", true),
Sent = table.Column(type: "INTEGER", nullable: false),
SendDate = table.Column(type: "TEXT", nullable: false),
EmailTemplate = table.Column(type: "TEXT", nullable: true),
Subject = table.Column(type: "TEXT", nullable: true),
Body = table.Column(type: "TEXT", nullable: true),
DeliveryStatus = table.Column(type: "TEXT", nullable: true),
ErrorMessage = table.Column(type: "TEXT", nullable: true),
AppUserId = table.Column(type: "INTEGER", nullable: false),
Created = table.Column(type: "TEXT", nullable: false),
CreatedUtc = table.Column(type: "TEXT", nullable: false),
LastModified = table.Column(type: "TEXT", nullable: false),
LastModifiedUtc = table.Column(type: "TEXT", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_EmailHistory", x => x.Id);
table.ForeignKey(
name: "FK_EmailHistory_AspNetUsers_AppUserId",
column: x => x.AppUserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_EmailHistory_AppUserId",
table: "EmailHistory",
column: "AppUserId");
migrationBuilder.CreateIndex(
name: "IX_EmailHistory_Sent_AppUserId_EmailTemplate_SendDate",
table: "EmailHistory",
columns: new[] { "Sent", "AppUserId", "EmailTemplate", "SendDate" });
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "EmailHistory");
}
}
}