Skip to content

Commit

Permalink
Change ServerSideSession.Id to long
Browse files Browse the repository at this point in the history
- Fixes #1387
  • Loading branch information
AndersAbel committed Nov 8, 2023
1 parent 8eb790c commit a1dddb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EntityFramework.Storage/Entities/ServerSideSession.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Duende.IdentityServer.EntityFramework.Entities;

public class ServerSideSession
{
public int Id { get; set; }
public long Id { get; set; }
public string Key { get; set; }
public string Scheme { get; set; }
public string SubjectId { get; set; }
Expand Down

0 comments on commit a1dddb1

Please sign in to comment.