using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BMA.EHR.Infrastructure.Migrations { /// public partial class update_table_retirementresign_add_group : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Group", table: "RetirementResigns", type: "longtext", nullable: true, comment: "คนยื่นมาอยู่ในกลุ่ม") .Annotation("MySql:CharSet", "utf8mb4"); migrationBuilder.AddColumn( name: "Group", table: "RetirementResignEmployees", type: "longtext", nullable: true, comment: "คนยื่นมาอยู่ในกลุ่ม") .Annotation("MySql:CharSet", "utf8mb4"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Group", table: "RetirementResigns"); migrationBuilder.DropColumn( name: "Group", table: "RetirementResignEmployees"); } } }