- Domain: NotificationCategory enum, Notification entity, INotificationRepository - Infrastructure: NotificationConfiguration, NotificationRepository, AppDbContext/DI 등록 - Migration: AddNotificationTable 생성 및 적용 - Application: DTO 7개, INotificationService, NotificationService, DI 등록 - API: NotificationController (summary, list, read, read-all) Closes #247
64 lines
2.8 KiB
C#
64 lines
2.8 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace SPMS.Infrastructure.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddNotificationTable : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Notification",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
|
TargetAdminId = table.Column<long>(type: "bigint", nullable: false),
|
|
Category = table.Column<byte>(type: "tinyint unsigned", nullable: false),
|
|
Title = table.Column<string>(type: "varchar(200)", maxLength: 200, nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
Content = table.Column<string>(type: "varchar(1000)", maxLength: 1000, nullable: false)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
LinkUrl = table.Column<string>(type: "varchar(500)", maxLength: 500, nullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4"),
|
|
IsRead = table.Column<bool>(type: "tinyint(1)", nullable: false, defaultValue: false),
|
|
ReadAt = table.Column<DateTime>(type: "datetime(6)", nullable: true),
|
|
CreatedAt = table.Column<DateTime>(type: "datetime(6)", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Notification", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Notification_Admin_TargetAdminId",
|
|
column: x => x.TargetAdminId,
|
|
principalTable: "Admin",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
})
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Notification_TargetAdminId_CreatedAt",
|
|
table: "Notification",
|
|
columns: new[] { "TargetAdminId", "CreatedAt" });
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Notification_TargetAdminId_IsRead",
|
|
table: "Notification",
|
|
columns: new[] { "TargetAdminId", "IsRead" });
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Notification");
|
|
}
|
|
}
|
|
}
|