This commit is contained in:
Elias Jansson
2025-08-22 23:54:52 +02:00
parent 090da1d075
commit dfbd18425a
9 changed files with 1399 additions and 4 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,26 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Aberwyn.Migrations
{
public partial class AddProvidersToMovieMetadata : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Metadata_Providers",
table: "TorrentItems",
type: "longtext",
nullable: true)
.Annotation("MySql:CharSet", "utf8mb4");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Metadata_Providers",
table: "TorrentItems");
}
}
}

View File

@@ -1171,6 +1171,9 @@ namespace Aberwyn.Migrations
b1.Property<string>("Poster")
.HasColumnType("longtext");
b1.Property<string>("Providers")
.HasColumnType("longtext");
b1.Property<string>("Runtime")
.HasColumnType("longtext");