Specify schema in migration for MaxActiveVideoStreams column in Users table

This commit is contained in:
Mahmoud Almontasser 2025-08-03 19:41:26 +02:00
parent c9b17c3e56
commit 22783bbff1

View File

@ -12,8 +12,8 @@ namespace Jellyfin.Server.Implementations.Migrations
{ {
migrationBuilder.AddColumn<int>( migrationBuilder.AddColumn<int>(
name: "MaxActiveVideoStreams", name: "MaxActiveVideoStreams",
schema: "jellyfin",
table: "Users", table: "Users",
type: "INTEGER",
nullable: false, nullable: false,
defaultValue: 1); defaultValue: 1);
} }
@ -23,6 +23,7 @@ namespace Jellyfin.Server.Implementations.Migrations
{ {
migrationBuilder.DropColumn( migrationBuilder.DropColumn(
name: "MaxActiveVideoStreams", name: "MaxActiveVideoStreams",
schema: "jellyfin",
table: "Users"); table: "Users");
} }
} }