using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Nuuru.Server.Migrations.PostgreSQL
{
///
public partial class AddTaxAccumulator : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "TaxAccumulator",
table: "ClanMembers",
type: "double precision",
nullable: false,
defaultValue: 0.0);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "TaxAccumulator",
table: "ClanMembers");
}
}
}