Add default value of 0

pull/4279/head
Joshua M. Boniface 4 years ago
parent 49c363751a
commit b3249e849c

@ -13,7 +13,8 @@ namespace Jellyfin.Server.Implementations.Migrations
name: "MaxActiveSessions",
schema: "jellyfin",
table: "Users",
nullable: false);
nullable: false,
defaultValue: 0);
}
protected override void Down(MigrationBuilder migrationBuilder)

Loading…
Cancel
Save