using Microsoft.EntityFrameworkCore.Migrations; namespace NadekoBot.Migrations { public partial class cradandcrdm : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "AutoDeleteTrigger", table: "CustomReactions", nullable: false, defaultValue: false); migrationBuilder.AddColumn( name: "DmResponse", table: "CustomReactions", nullable: false, defaultValue: false); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "AutoDeleteTrigger", table: "CustomReactions"); migrationBuilder.DropColumn( name: "DmResponse", table: "CustomReactions"); } } }