using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Lux.Report.Data.Migrations { /// public partial class AddReportFileConf : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "FileConfDataRaw", table: "report_list", type: "longtext", nullable: false) .Annotation("MySql:CharSet", "utf8mb4"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "FileConfDataRaw", table: "report_list"); } } }