mh_jy_safe/APT.Data.Migrations/Migrations/20250807002906_wyw2025080701.cs

35 lines
981 B
C#
Raw Normal View History

2025-08-25 09:56:57 +08:00
using Microsoft.EntityFrameworkCore.Migrations;
namespace APT.Data.Migrations.Migrations
{
public partial class wyw2025080701 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "INDEX",
table: "T_PC_INFO_COLOR",
type: "int",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "NAME",
table: "T_PC_INFO_COLOR",
type: "nvarchar(100)",
maxLength: 500,
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "INDEX",
table: "T_PC_INFO_COLOR");
migrationBuilder.DropColumn(
name: "NAME",
table: "T_PC_INFO_COLOR");
}
}
}