using Microsoft.EntityFrameworkCore; namespace Nuuru.Server.Data { public class PostgresApplicationDbContext : ApplicationDbContext { public PostgresApplicationDbContext(DbContextOptions options) : base(options) { } } }