Add support for visiting a level, to track unique plays

This commit is contained in:
LumaLivy 2021-11-08 07:04:08 -05:00
commit d8a52d4b42
5 changed files with 709 additions and 0 deletions

View file

@ -26,6 +26,7 @@ namespace LBPUnion.ProjectLighthouse
public DbSet<PhotoSubject> PhotoSubjects { get; set; }
public DbSet<Photo> Photos { get; set; }
public DbSet<LastMatch> LastMatches { get; set; }
public DbSet<VisitedLevel> VisitedLevels { get; set; }
protected override void OnConfiguring(DbContextOptionsBuilder options)
=> options.UseMySql(ServerSettings.DbConnectionString, MySqlServerVersion.LatestSupportedServerVersion);