mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-08-06 06:07:05 +02:00
Specify schema in migration for MaxActiveVideoStreams column in Users table
This commit is contained in:
parent
c9b17c3e56
commit
22783bbff1
@ -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");
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user