using Microsoft.EntityFrameworkCore.Migrations;
|
|
#nullable disable
|
|
namespace FlexJobApi.Database.Migrations.Migrations
|
{
|
/// <inheritdoc />
|
public partial class UpdateEnterpriseWallet0905005 : Migration
|
{
|
/// <inheritdoc />
|
protected override void Up(MigrationBuilder migrationBuilder)
|
{
|
migrationBuilder.AddColumn<string>(
|
name: "ReceiveAccount",
|
table: "EnterpriseWalletTransaction",
|
type: "nvarchar(max)",
|
nullable: true);
|
|
migrationBuilder.AddColumn<string>(
|
name: "ReceiveName",
|
table: "EnterpriseWalletTransaction",
|
type: "nvarchar(max)",
|
nullable: true);
|
}
|
|
/// <inheritdoc />
|
protected override void Down(MigrationBuilder migrationBuilder)
|
{
|
migrationBuilder.DropColumn(
|
name: "ReceiveAccount",
|
table: "EnterpriseWalletTransaction");
|
|
migrationBuilder.DropColumn(
|
name: "ReceiveName",
|
table: "EnterpriseWalletTransaction");
|
}
|
}
|
}
|