using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BMA.EHR.Infrastructure.Migrations { /// public partial class updatetableInsigniaRequestProfileremoveinvoice : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "InvoiceNumber", table: "InsigniaNoteProfiles"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "InvoiceNumber", table: "InsigniaNoteProfiles", type: "longtext", nullable: true, comment: "หมายเลขใบกำกับ") .Annotation("MySql:CharSet", "utf8mb4"); } } }