using Microsoft.EntityFrameworkCore.Migrations; namespace NadekoBot.Migrations { public partial class maxdropamount : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "CurrencyDropAmountMax", table: "BotConfig", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "CurrencyDropAmountMax", table: "BotConfig"); } } }