fixes small bug in database logic wich blocked creating the database

This commit is contained in:
Henry Trumme
2025-04-22 01:18:35 +02:00
parent db59a9e26e
commit 1b40ea2cea
2 changed files with 12 additions and 9 deletions

View File

@@ -16,6 +16,8 @@ namespace WatchLog.Data
optionsBuilder.UseSqlite(Configuration.GetConnectionString("WatchLogDB"));
}
//Note: Link Tables a commented out because Entity Framework creates the tables by itself
// Global
public DbSet<Admin> Admins { get; set; }
public DbSet<Genre> Genres { get; set; }