Prepared Seperation of Database components for future multi provider support

This commit is contained in:
JPVenson
2025-01-26 20:45:28 +00:00
parent b318f33599
commit aa811eb1e3
220 changed files with 742 additions and 320 deletions

View File

@@ -0,0 +1,20 @@
using Jellyfin.Data.Entities.Security;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace Jellyfin.Server.Implementations.ModelConfiguration
{
/// <summary>
/// FluentAPI configuration for the ApiKey entity.
/// </summary>
public class ApiKeyConfiguration : IEntityTypeConfiguration<ApiKey>
{
/// <inheritdoc/>
public void Configure(EntityTypeBuilder<ApiKey> builder)
{
builder
.HasIndex(entity => entity.AccessToken)
.IsUnique();
}
}
}