Add Archive model and migration for storing archive statistics

This commit is contained in:
2025-09-28 01:41:19 +01:00
parent 9850100508
commit e3b051b82f
6 changed files with 3376 additions and 2 deletions

View File

@@ -48,6 +48,7 @@ public sealed class DbContext : IdentityDbContext<IdentityUser>
public DbContext(DbContextOptions<DbContext> options) : base(options) {}
public DbSet<Archive> Archives { get; set; }
public DbSet<Device> Devices { get; set; }
public DbSet<UploadedReport> Reports { get; set; }
public DbSet<Command> Commands { get; set; }