using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace DramaLing.Api.Migrations
{
///
public partial class AddSpacedRepetitionFields : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "LastQuestionType",
table: "flashcards",
type: "TEXT",
maxLength: 50,
nullable: true);
migrationBuilder.AddColumn(
name: "ReviewHistory",
table: "flashcards",
type: "TEXT",
nullable: true);
migrationBuilder.AddColumn(
name: "UserLevel",
table: "flashcards",
type: "INTEGER",
nullable: false,
defaultValue: 0);
migrationBuilder.AddColumn(
name: "WordLevel",
table: "flashcards",
type: "INTEGER",
nullable: false,
defaultValue: 0);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LastQuestionType",
table: "flashcards");
migrationBuilder.DropColumn(
name: "ReviewHistory",
table: "flashcards");
migrationBuilder.DropColumn(
name: "UserLevel",
table: "flashcards");
migrationBuilder.DropColumn(
name: "WordLevel",
table: "flashcards");
}
}
}