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);
|
|
}
|
|
}
|
|
}
|