using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BMA.EHR.Infrastructure.Migrations { /// public partial class updatetablePlacementReciveaddreportdate : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ReportingDate", table: "PlacementAppointments", type: "datetime(6)", nullable: true, comment: "วันที่รายงานตัว"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ReportingDate", table: "PlacementAppointments"); } } }