29 lines
851 B
C#
29 lines
851 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace BMA.EHR.Infrastructure.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddFieldsIsDateTable : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "IsDate",
|
|
table: "ProfileTrainings",
|
|
type: "tinyint(1)",
|
|
nullable: true,
|
|
comment: "ประเภทช่วงเวลาการศึกษา");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "IsDate",
|
|
table: "ProfileTrainings");
|
|
}
|
|
}
|
|
}
|