mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
523 B
21 lines
523 B
using ErsatzTV.Core.Domain; |
|
using Microsoft.EntityFrameworkCore; |
|
|
|
namespace ErsatzTV.Infrastructure.Data |
|
{ |
|
public class LogContext : DbContext |
|
{ |
|
public LogContext(DbContextOptions<LogContext> options) |
|
: base(options) |
|
{ |
|
} |
|
|
|
public DbSet<LogEntry> LogEntries { get; set; } |
|
|
|
protected override void OnModelCreating(ModelBuilder builder) |
|
{ |
|
base.OnModelCreating(builder); |
|
builder.Entity<LogEntry>().ToTable("Logs"); |
|
} |
|
} |
|
}
|
|
|