using Microsoft.EntityFrameworkCore.Migrations; namespace NadekoBot.Migrations { public partial class streamofflineandmessage : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "NotifyStreamOffline", table: "GuildConfigs", nullable: false, defaultValue: false); migrationBuilder.AddColumn( name: "Message", table: "FollowedStream", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "NotifyStreamOffline", table: "GuildConfigs"); migrationBuilder.DropColumn( name: "Message", table: "FollowedStream"); } } }