using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Managing.Infrastructure.Databases.Migrations
{
///
public partial class AddBotTradingBalanceToBots : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "BotTradingBalance",
table: "Bots",
type: "numeric",
nullable: false,
defaultValue: 0m);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "BotTradingBalance",
table: "Bots");
}
}
}