Files
irc-netcore-api/IRaCIS.Core.Infra.EFCore/Migrations/20251104012347_ReadingPeriodPlanId.cs
T
he a67472c9b4
continuous-integration/drone/push Build is running
阅片期修改
2025-11-04 10:37:15 +08:00

30 lines
791 B
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class ReadingPeriodPlanId : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<Guid>(
name: "ReadingPeriodPlanId",
table: "ReadModule",
type: "uniqueidentifier",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ReadingPeriodPlanId",
table: "ReadModule");
}
}
}