Files
SVSimServer/SVSim.Database/Migrations/20260609182346_AddViewerAcquireHistory.cs
2026-06-09 14:24:36 -04:00

54 lines
2.3 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace SVSim.Database.Migrations
{
/// <inheritdoc />
public partial class AddViewerAcquireHistory : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "ViewerAcquireHistory",
columns: table => new
{
Id = table.Column<long>(type: "bigint", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
ViewerId = table.Column<long>(type: "bigint", nullable: false),
RewardType = table.Column<int>(type: "integer", nullable: false),
RewardDetailId = table.Column<long>(type: "bigint", nullable: false),
RewardCount = table.Column<int>(type: "integer", nullable: false),
AcquireType = table.Column<int>(type: "integer", nullable: false),
Message = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: false),
AcquireTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_ViewerAcquireHistory", x => x.Id);
table.ForeignKey(
name: "FK_ViewerAcquireHistory_Viewers_ViewerId",
column: x => x.ViewerId,
principalTable: "Viewers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_ViewerAcquireHistory_ViewerId_AcquireTime_Id",
table: "ViewerAcquireHistory",
columns: new[] { "ViewerId", "AcquireTime", "Id" });
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "ViewerAcquireHistory");
}
}
}