Files
lux/Lux.Report.Data/Migrations/20260424130010_AddReportFileConf.cs

30 lines
811 B
C#

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