using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace wtmProject.DataAccess.Migrations { public partial class hmr2024080601 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "FifthBillingAmount", table: "WTM_CONTRACT", type: "decimal(18,2)", nullable: true); migrationBuilder.AddColumn( name: "FirstBillingAmount", table: "WTM_CONTRACT", type: "decimal(18,2)", nullable: true); migrationBuilder.AddColumn( name: "FourthBillingAmount", table: "WTM_CONTRACT", type: "decimal(18,2)", nullable: true); migrationBuilder.AddColumn( name: "SecondBillingAmount", table: "WTM_CONTRACT", type: "decimal(18,2)", nullable: true); migrationBuilder.AddColumn( name: "ThreeBillingAmount", table: "WTM_CONTRACT", type: "decimal(18,2)", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "FifthBillingAmount", table: "WTM_CONTRACT"); migrationBuilder.DropColumn( name: "FirstBillingAmount", table: "WTM_CONTRACT"); migrationBuilder.DropColumn( name: "FourthBillingAmount", table: "WTM_CONTRACT"); migrationBuilder.DropColumn( name: "SecondBillingAmount", table: "WTM_CONTRACT"); migrationBuilder.DropColumn( name: "ThreeBillingAmount", table: "WTM_CONTRACT"); } } }