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