2020-10-04 17:43:20 +00:00
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
#pragma warning disable SA1601
|
|
|
|
|
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
2020-10-04 17:14:32 +00:00
|
|
|
|
|
|
|
|
|
namespace Jellyfin.Server.Implementations.Migrations
|
|
|
|
|
{
|
2020-10-05 00:31:24 +00:00
|
|
|
|
public partial class AddMaxActiveSessions : Migration
|
2020-10-04 17:14:32 +00:00
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<int>(
|
|
|
|
|
name: "MaxActiveSessions",
|
|
|
|
|
schema: "jellyfin",
|
|
|
|
|
table: "Users",
|
2020-10-05 20:54:51 +00:00
|
|
|
|
nullable: false,
|
|
|
|
|
defaultValue: 0);
|
2020-10-04 17:14:32 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "MaxActiveSessions",
|
|
|
|
|
schema: "jellyfin",
|
|
|
|
|
table: "Users");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|