25 lines
769 B
C#
25 lines
769 B
C#
using API.Models.Internal.Altersgruppen;
|
|
using API.Models.Internal.User;
|
|
using Microsoft.AspNetCore.Identity.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace API.Database
|
|
{
|
|
public class ApplicationDbContext : IdentityDbContext<User>
|
|
{
|
|
public ApplicationDbContext(DbContextOptions<ApplicationDbContext> options) : base(options)
|
|
{
|
|
}
|
|
|
|
public DbSet<AltersGruppe> Altersgruppen { get; set; }
|
|
public DbSet<RegistrationKey> RegistrationKeys { get; set; }
|
|
|
|
protected override void OnModelCreating(ModelBuilder modelBuilder)
|
|
{
|
|
base.OnModelCreating(modelBuilder);
|
|
|
|
modelBuilder.ApplyConfigurationsFromAssembly(typeof(ApplicationDbContext).Assembly);
|
|
}
|
|
}
|
|
}
|