diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2020-10-05 16:54:51 -0400 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2020-10-05 16:54:51 -0400 |
| commit | b3249e849c68c3474e18f999fc085d41bff75adc (patch) | |
| tree | 1e143709d77c1bd45b389d80979b37595b3364cd | |
| parent | 49c363751a5bb54ee52e7764f223cd6263200c7c (diff) | |
Add default value of 0
| -rw-r--r-- | Jellyfin.Server.Implementations/Migrations/20201004171403_AddMaxActiveSessions.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Jellyfin.Server.Implementations/Migrations/20201004171403_AddMaxActiveSessions.cs b/Jellyfin.Server.Implementations/Migrations/20201004171403_AddMaxActiveSessions.cs index e6bf4192b..10acb4def 100644 --- a/Jellyfin.Server.Implementations/Migrations/20201004171403_AddMaxActiveSessions.cs +++ b/Jellyfin.Server.Implementations/Migrations/20201004171403_AddMaxActiveSessions.cs @@ -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) |
