25 lines
711 B
C#
25 lines
711 B
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
namespace APT.Data.Migrations.Migrations
|
|||
|
|
{
|
|||
|
|
public partial class wyw2025072301 : Migration
|
|||
|
|
{
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.AddColumn<string>(
|
|||
|
|
name: "PROCTNAME",
|
|||
|
|
table: "T_TI_SAFE_PDT_COST_RECORD",
|
|||
|
|
type: "nvarchar(200)",
|
|||
|
|
maxLength: 200,
|
|||
|
|
nullable: true);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.DropColumn(
|
|||
|
|
name: "PROCTNAME",
|
|||
|
|
table: "T_TI_SAFE_PDT_COST_RECORD");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|