using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace gehGassi.Persistence.Migrations
{
///
public partial class WalletBalanceToLong : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "Balance",
table: "Wallets",
type: "bigint",
nullable: false,
oldClrType: typeof(int),
oldType: "int");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "Balance",
table: "Wallets",
type: "int",
nullable: false,
oldClrType: typeof(long),
oldType: "bigint");
}
}
}