mirror of
https://dev.azure.com/tstanciu94/Packages/_git/Netmash
synced 2025-06-21 19:22:38 +03:00
17 lines
425 B
C#
17 lines
425 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace NDB.Infrastructure.DatabaseMigration.DbContexts
|
|
{
|
|
internal class MigrationDbContext : DbContext
|
|
{
|
|
public MigrationDbContext(DbContextOptions<MigrationDbContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
base.OnModelCreating(modelBuilder);
|
|
}
|
|
}
|
|
}
|