using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace CompanyManagment.EFCore.Migrations
{
///
public partial class addloanamounttocheckout : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "LoanAmount",
table: "CustomizeCheckoutTempLoanInstallments",
type: "nvarchar(30)",
maxLength: 30,
nullable: true);
migrationBuilder.AddColumn(
name: "LoanAmount",
table: "CustomizeCheckoutLoanInstallments",
type: "nvarchar(30)",
maxLength: 30,
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LoanAmount",
table: "CustomizeCheckoutTempLoanInstallments");
migrationBuilder.DropColumn(
name: "LoanAmount",
table: "CustomizeCheckoutLoanInstallments");
}
}
}