Add LastMatches table

This commit is contained in:
jvyden 2021-10-19 16:39:22 -04:00
parent a41f4516cb
commit 20e6cdb3cd
No known key found for this signature in database
GPG key ID: 18BCF2BE0262B278
5 changed files with 433 additions and 0 deletions

View file

@ -14,6 +14,8 @@ namespace ProjectLighthouse {
public DbSet<Comment> Comments { get; set; }
public DbSet<Token> Tokens { get; set; }
public DbSet<LastMatch> LastMatches { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder options) => options.UseMySql(
ServerSettings.DbConnectionString,
MySqlServerVersion.LatestSupportedServerVersion