aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-10-05 13:33:22 -0400
committerJoshua M. Boniface <joshua@boniface.me>2020-10-05 14:04:57 -0400
commit49c363751a5bb54ee52e7764f223cd6263200c7c (patch)
treec7f86d741980bc57d1616e9d1e7507e77f3d4d5a /Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs
parent5e11eb035995b659b641b79e8256a90f962a4d5b (diff)
Make MaxActiveSessions not nullable
Fixes a bad assumption with the previous migration.
Diffstat (limited to 'Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs')
-rw-r--r--Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs b/Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs
index 3c9e1aee4..16d62f482 100644
--- a/Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs
+++ b/Jellyfin.Server.Implementations/Migrations/JellyfinDbModelSnapshot.cs
@@ -344,7 +344,7 @@ namespace Jellyfin.Server.Implementations.Migrations
b.Property<int?>("LoginAttemptsBeforeLockout")
.HasColumnType("INTEGER");
- b.Property<int?>("MaxActiveSessions")
+ b.Property<int>("MaxActiveSessions")
.HasColumnType("INTEGER");
b.Property<int?>("MaxParentalAgeRating")