using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BMA.EHR.Infrastructure.Migrations { /// public partial class updatetablePlacementReciveadddateOfBirth : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "DateOfBirth", table: "PlacementAppointments", type: "datetime(6)", maxLength: 40, nullable: true, comment: "วันเกิด"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "DateOfBirth", table: "PlacementAppointments"); } } }