26 lines
708 B
C#
26 lines
708 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace wtmProject.DataAccess.Migrations
|
|
{
|
|
public partial class hmr2025091901 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<decimal>(
|
|
name: "DsfCostAmount",
|
|
table: "WTM_CONTRACT",
|
|
type: "decimal(18,2)",
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "DsfCostAmount",
|
|
table: "WTM_CONTRACT");
|
|
}
|
|
}
|
|
}
|