Added functionality to the database for a WhoWas feature that can say when a user was last in chat

This commit is contained in:
barelyprofessional
2025-04-13 13:09:46 -05:00
parent 291ca7954e
commit dd0f6cee6c
6 changed files with 471 additions and 0 deletions

View File

@@ -18,4 +18,5 @@ public class ApplicationDbContext : DbContext
public DbSet<TwitchViewCountDbModel> TwitchViewCounts { get; set; }
public DbSet<ChipsggBetDbModel> ChipsggBets { get; set; }
public DbSet<ImageDbModel> Images { get; set; }
public DbSet<UserWhoWasDbModel> UsersWhoWere { get; set; }
}