using Femto.Modules.Media.Infrastructure.Integration; using Microsoft.EntityFrameworkCore; namespace Femto.Modules.Media.Data; internal class MediaContext(DbContextOptions options) : DbContext(options) { public virtual DbSet Outbox { get; set; } protected override void OnModelCreating(ModelBuilder builder) { base.OnModelCreating(builder); builder.HasDefaultSchema("blog"); builder.ApplyConfigurationsFromAssembly(typeof(MediaContext).Assembly); } }