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