mh_jy_safe/APT.Data.Migrations/Migrations/20260409064539_hmr2026040902.cs

36 lines
1.2 KiB
C#
Raw Normal View History

2026-04-09 14:46:05 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
namespace APT.Data.Migrations.Migrations
{
public partial class hmr2026040902 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "COMPANY_DESCRIPTION",
table: "T_FO_ENTERPRISE_INFORMATION_REGISTRATION",
type: "nvarchar(1000)",
maxLength: 1000,
nullable: true,
oldClrType: typeof(string),
oldType: "nvarchar(500)",
oldMaxLength: 500,
oldNullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "COMPANY_DESCRIPTION",
table: "T_FO_ENTERPRISE_INFORMATION_REGISTRATION",
type: "nvarchar(500)",
maxLength: 500,
nullable: true,
oldClrType: typeof(string),
oldType: "nvarchar(1000)",
oldMaxLength: 1000,
oldNullable: true);
}
}
}