using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Infrastructure.Persistence.Migrations
{
///
public partial class AddPaymentOrderNew : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "Payment_DanalVbankFeeRate",
table: "Config",
type: "decimal(5,2)",
precision: 5,
scale: 2,
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,2)",
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalVbankFeeAmount",
table: "Config",
type: "decimal(18,0)",
precision: 18,
scale: 0,
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,2)",
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalTransferFeeRate",
table: "Config",
type: "decimal(5,2)",
precision: 5,
scale: 2,
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,2)",
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalTransferFeeAmount",
table: "Config",
type: "decimal(18,0)",
precision: 18,
scale: 0,
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,2)",
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalSimpleFeeRate",
table: "Config",
type: "decimal(5,2)",
precision: 5,
scale: 2,
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,2)",
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalSimpleFeeAmount",
table: "Config",
type: "decimal(18,0)",
precision: 18,
scale: 0,
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,2)",
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalCardFeeRate",
table: "Config",
type: "decimal(5,2)",
precision: 5,
scale: 2,
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,2)",
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalCardFeeAmount",
table: "Config",
type: "decimal(18,0)",
precision: 18,
scale: 0,
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,2)",
oldNullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "Payment_DanalVbankFeeRate",
table: "Config",
type: "decimal(18,2)",
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(5,2)",
oldPrecision: 5,
oldScale: 2,
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalVbankFeeAmount",
table: "Config",
type: "decimal(18,2)",
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,0)",
oldPrecision: 18,
oldScale: 0,
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalTransferFeeRate",
table: "Config",
type: "decimal(18,2)",
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(5,2)",
oldPrecision: 5,
oldScale: 2,
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalTransferFeeAmount",
table: "Config",
type: "decimal(18,2)",
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,0)",
oldPrecision: 18,
oldScale: 0,
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalSimpleFeeRate",
table: "Config",
type: "decimal(18,2)",
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(5,2)",
oldPrecision: 5,
oldScale: 2,
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalSimpleFeeAmount",
table: "Config",
type: "decimal(18,2)",
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,0)",
oldPrecision: 18,
oldScale: 0,
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalCardFeeRate",
table: "Config",
type: "decimal(18,2)",
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(5,2)",
oldPrecision: 5,
oldScale: 2,
oldNullable: true);
migrationBuilder.AlterColumn(
name: "Payment_DanalCardFeeAmount",
table: "Config",
type: "decimal(18,2)",
nullable: true,
oldClrType: typeof(decimal),
oldType: "decimal(18,0)",
oldPrecision: 18,
oldScale: 0,
oldNullable: true);
}
}
}