mirror of https://github.com/jellyfin/jellyfin.git
145 lines
4.7 KiB
C#
145 lines
4.7 KiB
C#
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);
|
|
}
|
|
}
|
|
}
|