using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace NexusReader.Data.Migrations
{
///
public partial class AddEbookProgressAndChapter : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "LastChapter",
table: "Ebooks",
type: "character varying(255)",
maxLength: 255,
nullable: true);
migrationBuilder.AddColumn(
name: "Progress",
table: "Ebooks",
type: "double precision",
nullable: false,
defaultValue: 0.0);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LastChapter",
table: "Ebooks");
migrationBuilder.DropColumn(
name: "Progress",
table: "Ebooks");
}
}
}