diff --git a/PARR.DAL/Context/DataContext.cs b/PARR.DAL/Context/DataContext.cs index 80b92cc3..3b71ec18 100644 --- a/PARR.DAL/Context/DataContext.cs +++ b/PARR.DAL/Context/DataContext.cs @@ -11,27 +11,36 @@ namespace PARR.DAL.Context { public DataContext(DbContextOptions options) : base(options) { } + #region v1 public DbSet JobTypes { get; set; } public DbSet JobCategories { get; set; } public DbSet JobModes { get; set; } public DbSet JobStatuses { get; set; } public DbSet V1_Hosts { get; set; } - public DbSet Hosts { get; set; } public DbSet Jobs { get; set; } public DbSet JobJournals { get; set; } - public DbSet Applications { get; set; } - public DbSet ApplicationTypes { get; set; } - public DbSet ApplicationsInHosts { get; set; } public DbSet V1_Applications { get; set; } public DbSet V1_ApplicationTypes { get; set; } public DbSet V1_ApplicationsInHosts { get; set; } + #endregion + + public DbSet Hosts { get; set; } + public DbSet Applications { get; set; } + public DbSet ApplicationTypes { get; set; } + public DbSet ApplicationsInHosts { get; set; } + public DbSet Settings { get; set; } public DbSet RawDataEKs { get; set; } public DbSet