using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BMA.EHR.Infrastructure.Migrations.LeaveDb { /// public partial class update_LeaveRequestApprover_add_PositionSign : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "PositionSign", table: "LeaveRequestApprovers", type: "longtext", nullable: true, comment: "ตำแหน่งใต้ลายเช็นต์") .Annotation("MySql:CharSet", "utf8mb4"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "PositionSign", table: "LeaveRequestApprovers"); } } }