irc-netcore-api/IRaCIS.Core.Infra.EFCore/Migrations/20250530010225_IsDefaultCho...

30 lines
802 B
C#

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