diff --git a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Contexts/LeedsBeerQuestDbContext.cs b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Contexts/LeedsBeerQuestDbContext.cs index b7eae87..4d5e3b0 100644 --- a/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Contexts/LeedsBeerQuestDbContext.cs +++ b/backend/LeedsBeerQuest.API/LeedsBeerQuest.API/Data/Contexts/LeedsBeerQuestDbContext.cs @@ -9,10 +9,9 @@ public class LeedsBeerQuestDbContext : DbContext public LeedsBeerQuestDbContext(DbContextOptions options) : base(options) { } - + public DbSet Venues { get; set; } - - // Don't need to define these, but explicitly adding them makes them a little more discoverable. + public DbSet Categories { get; set; } public DbSet Tags { get; set; } } \ No newline at end of file