using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace StreakBot.Migrations { /// public partial class AddGroupDmSupport : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ChannelId", table: "Streaks", type: "INTEGER", nullable: false, defaultValue: 0ul); migrationBuilder.AddColumn( name: "MessageId", table: "Channels", type: "INTEGER", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ChannelId", table: "Streaks"); migrationBuilder.DropColumn( name: "MessageId", table: "Channels"); } } }