aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Migrations/20241112234144_FixMediaStreams2.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Server.Implementations/Migrations/20241112234144_FixMediaStreams2.cs')
-rw-r--r--Jellyfin.Server.Implementations/Migrations/20241112234144_FixMediaStreams2.cs144
1 files changed, 0 insertions, 144 deletions
diff --git a/Jellyfin.Server.Implementations/Migrations/20241112234144_FixMediaStreams2.cs b/Jellyfin.Server.Implementations/Migrations/20241112234144_FixMediaStreams2.cs
deleted file mode 100644
index 78611b9e4..000000000
--- a/Jellyfin.Server.Implementations/Migrations/20241112234144_FixMediaStreams2.cs
+++ /dev/null
@@ -1,144 +0,0 @@
-using Microsoft.EntityFrameworkCore.Migrations;
-
-#nullable disable
-
-namespace Jellyfin.Server.Implementations.Migrations
-{
- /// <inheritdoc />
- public partial class FixMediaStreams2 : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "Profile",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: true,
- oldClrType: typeof(string),
- oldType: "TEXT");
-
- migrationBuilder.AlterColumn<string>(
- name: "Path",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: true,
- oldClrType: typeof(string),
- oldType: "TEXT");
-
- migrationBuilder.AlterColumn<string>(
- name: "Language",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: true,
- oldClrType: typeof(string),
- oldType: "TEXT");
-
- migrationBuilder.AlterColumn<bool>(
- name: "IsInterlaced",
- table: "MediaStreamInfos",
- type: "INTEGER",
- nullable: true,
- oldClrType: typeof(bool),
- oldType: "INTEGER");
-
- migrationBuilder.AlterColumn<string>(
- name: "Codec",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: true,
- oldClrType: typeof(string),
- oldType: "TEXT");
-
- migrationBuilder.AlterColumn<string>(
- name: "ChannelLayout",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: true,
- oldClrType: typeof(string),
- oldType: "TEXT");
-
- migrationBuilder.AlterColumn<string>(
- name: "AspectRatio",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: true,
- oldClrType: typeof(string),
- oldType: "TEXT");
- }
-
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AlterColumn<string>(
- name: "Profile",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: false,
- defaultValue: string.Empty,
- oldClrType: typeof(string),
- oldType: "TEXT",
- oldNullable: true);
-
- migrationBuilder.AlterColumn<string>(
- name: "Path",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: false,
- defaultValue: string.Empty,
- oldClrType: typeof(string),
- oldType: "TEXT",
- oldNullable: true);
-
- migrationBuilder.AlterColumn<string>(
- name: "Language",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: false,
- defaultValue: string.Empty,
- oldClrType: typeof(string),
- oldType: "TEXT",
- oldNullable: true);
-
- migrationBuilder.AlterColumn<bool>(
- name: "IsInterlaced",
- table: "MediaStreamInfos",
- type: "INTEGER",
- nullable: false,
- defaultValue: false,
- oldClrType: typeof(bool),
- oldType: "INTEGER",
- oldNullable: true);
-
- migrationBuilder.AlterColumn<string>(
- name: "Codec",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: false,
- defaultValue: string.Empty,
- oldClrType: typeof(string),
- oldType: "TEXT",
- oldNullable: true);
-
- migrationBuilder.AlterColumn<string>(
- name: "ChannelLayout",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: false,
- defaultValue: string.Empty,
- oldClrType: typeof(string),
- oldType: "TEXT",
- oldNullable: true);
-
- migrationBuilder.AlterColumn<string>(
- name: "AspectRatio",
- table: "MediaStreamInfos",
- type: "TEXT",
- nullable: false,
- defaultValue: string.Empty,
- oldClrType: typeof(string),
- oldType: "TEXT",
- oldNullable: true);
- }
- }
-}