using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace FlexJobApi.Database.Migrations.Migrations { /// public partial class UpdateEnterpriseWallet0905002 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Account", table: "EnterpriseWallet", type: "nvarchar(max)", nullable: true); migrationBuilder.AddColumn( name: "MerchantId", table: "EnterpriseWallet", type: "nvarchar(max)", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Account", table: "EnterpriseWallet"); migrationBuilder.DropColumn( name: "MerchantId", table: "EnterpriseWallet"); } } }