- Add EF Core migrations for initial schema (clubs, members, work_items, shifts, shift_signups) - Implement RLS policies with SET LOCAL for tenant isolation - Add Finbuckle multi-tenant middleware with ClaimStrategy + HeaderStrategy fallback - Create TenantValidationMiddleware to enforce JWT claims match X-Tenant-Id header - Add tenant-aware DB interceptors (SaveChangesTenantInterceptor, TenantDbConnectionInterceptor) - Configure AppDbContext with tenant scoping and RLS support - Add test infrastructure: CustomWebApplicationFactory, TestAuthHandler, DatabaseFixture - Write TDD integration tests for multi-tenant isolation and RLS enforcement - Add health check null safety for connection string Tasks: 7 (PostgreSQL schema + migrations + RLS), 8 (Finbuckle multi-tenancy + validation), 12 (test infrastructure)
40 lines
1009 B
C#
40 lines
1009 B
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using WorkClub.Domain.Entities;
|
|
|
|
namespace WorkClub.Infrastructure.Data.Configurations;
|
|
|
|
public class ClubConfiguration : IEntityTypeConfiguration<Club>
|
|
{
|
|
public void Configure(EntityTypeBuilder<Club> builder)
|
|
{
|
|
builder.ToTable("clubs");
|
|
|
|
builder.HasKey(c => c.Id);
|
|
|
|
builder.Property(c => c.TenantId)
|
|
.IsRequired()
|
|
.HasMaxLength(200);
|
|
|
|
builder.Property(c => c.Name)
|
|
.IsRequired()
|
|
.HasMaxLength(200);
|
|
|
|
builder.Property(c => c.Description)
|
|
.HasMaxLength(2000);
|
|
|
|
builder.Property(c => c.SportType)
|
|
.IsRequired()
|
|
.HasConversion<int>();
|
|
|
|
builder.Property(c => c.CreatedAt)
|
|
.IsRequired();
|
|
|
|
builder.Property(c => c.UpdatedAt)
|
|
.IsRequired();
|
|
|
|
builder.HasIndex(c => c.TenantId)
|
|
.HasDatabaseName("ix_clubs_tenant_id");
|
|
}
|
|
}
|