Backport: Fix/user manager collation (#16919)

Backport: Fix/user manager collation
This commit is contained in:
Bond-009
2026-05-26 20:59:20 +02:00
committed by GitHub
parent d0f1df13b2
commit 11130030d2
13 changed files with 4068 additions and 91 deletions

View File

@@ -50,6 +50,10 @@ namespace Jellyfin.Database.Implementations.ModelConfiguration
builder
.HasIndex(entity => entity.Username)
.IsUnique();
builder
.HasIndex(entity => entity.NormalizedUsername)
.IsUnique();
}
}
}