Changed to have /torrents/files return only files that are selected. Add pause/unpause from Sonarr/Radar. Works only for Aria2.
23 lines
637 B
C#
23 lines
637 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace RdtClient.Data.Migrations
|
|
{
|
|
public partial class Torrents_Add_Priority : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "Priority",
|
|
table: "Torrents",
|
|
type: "INTEGER",
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Priority",
|
|
table: "Torrents");
|
|
}
|
|
}
|
|
}
|