Files
irc-netcore-api/IRaCIS.Core.Infra.EFCore/Migrations/20250916075820_ViewStudyPart.cs
T
2025-09-16 16:00:52 +08:00

30 lines
786 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class ViewStudyPart : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsViewStudyPart",
table: "VisitTask",
type: "bit",
nullable: false,
defaultValue: false);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsViewStudyPart",
table: "VisitTask");
}
}
}