using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BMA.EHR.Recurit.Exam.Service.Migrations { /// public partial class updatetableperiodaddqrcode1 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "CustomerName", table: "PeriodExams"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "CustomerName", table: "PeriodExams", type: "longtext", nullable: true, comment: "Customer name") .Annotation("MySql:CharSet", "utf8mb4"); } } }