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