mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-08-06 22:27:07 +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>(
|
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");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user