Files
irc-netcore-api/IRaCIS.Core.Infra.EFCore/Migrations/20250725071044_auditInspection.cs
T
2025-07-25 15:13:44 +08:00

30 lines
808 B
C#

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