irc-netcore-api/IRaCIS.Core.Infra.EFCore/Migrations/20251028062015_EmailLog.cs

60 lines
2.8 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class EmailLog : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "EmailLog",
columns: table => new
{
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
MessageId = table.Column<string>(type: "nvarchar(400)", maxLength: 400, nullable: false),
UniqueId = table.Column<string>(type: "nvarchar(400)", maxLength: 400, nullable: false),
EmailSubject = table.Column<string>(type: "nvarchar(400)", maxLength: 400, nullable: false),
ToRecipients = table.Column<string>(type: "nvarchar(max)", nullable: false),
CcRecipients = table.Column<string>(type: "nvarchar(max)", nullable: false),
Attachments = table.Column<string>(type: "nvarchar(max)", nullable: false),
EmailDate = table.Column<DateTime>(type: "datetime2", nullable: true),
ErrorInfo = table.Column<string>(type: "nvarchar(400)", maxLength: 400, nullable: false),
SenderAddress = table.Column<string>(type: "nvarchar(400)", maxLength: 400, nullable: false),
EmailStateEnum = table.Column<int>(type: "int", nullable: false),
CreateUserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
CreateTime = table.Column<DateTime>(type: "datetime2", nullable: false),
UpdateUserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
UpdateTime = table.Column<DateTime>(type: "datetime2", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_EmailLog", x => x.Id);
table.ForeignKey(
name: "FK_EmailLog_User_CreateUserId",
column: x => x.CreateUserId,
principalTable: "User",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
},
comment: "邮件日志");
migrationBuilder.CreateIndex(
name: "IX_EmailLog_CreateUserId",
table: "EmailLog",
column: "CreateUserId");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "EmailLog");
}
}
}