25 lines
737 B
C#
25 lines
737 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace APT.Data.Migrations.Migrations
|
|
{
|
|
public partial class hmr2026052201 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "IS_RECORD",
|
|
table: "T_FO_PRE_SHIFT_MEETING_RECORD",
|
|
type: "bit",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "IS_RECORD",
|
|
table: "T_FO_PRE_SHIFT_MEETING_RECORD");
|
|
}
|
|
}
|
|
}
|