mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 20:15:26 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
164 lines
5.2 KiB
C#
164 lines
5.2 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Kavita.Database.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class ScrobbleEventProcessed : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "SyncHistory");
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "IsProcessed",
|
|
table: "ScrobbleEvent",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: false);
|
|
|
|
migrationBuilder.AddColumn<DateTime>(
|
|
name: "ProcessDateUtc",
|
|
table: "ScrobbleEvent",
|
|
type: "TEXT",
|
|
nullable: true);
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "ManageReadingLists",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER",
|
|
oldDefaultValue: true);
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "ManageCollections",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER",
|
|
oldDefaultValue: true);
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "IncludeInSearch",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER",
|
|
oldDefaultValue: true);
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "IncludeInRecommended",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER",
|
|
oldDefaultValue: true);
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "IncludeInDashboard",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER",
|
|
oldDefaultValue: true);
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "FolderWatching",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER",
|
|
oldDefaultValue: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "IsProcessed",
|
|
table: "ScrobbleEvent");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "ProcessDateUtc",
|
|
table: "ScrobbleEvent");
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "ManageReadingLists",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: true,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER");
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "ManageCollections",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: true,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER");
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "IncludeInSearch",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: true,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER");
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "IncludeInRecommended",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: true,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER");
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "IncludeInDashboard",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: true,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER");
|
|
|
|
migrationBuilder.AlterColumn<bool>(
|
|
name: "FolderWatching",
|
|
table: "Library",
|
|
type: "INTEGER",
|
|
nullable: false,
|
|
defaultValue: true,
|
|
oldClrType: typeof(bool),
|
|
oldType: "INTEGER");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "SyncHistory",
|
|
columns: table => new
|
|
{
|
|
Key = table.Column<int>(type: "INTEGER", nullable: false),
|
|
Value = table.Column<DateTime>(type: "TEXT", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_SyncHistory", x => x.Key);
|
|
});
|
|
}
|
|
}
|
|
}
|