Add statistics for remote.

This commit is contained in:
2019-12-04 18:29:58 +00:00
parent 9dacf48f5a
commit 13c3060737
7 changed files with 2583 additions and 30 deletions

View File

@@ -1173,6 +1173,49 @@ namespace DiscImageChef.Server.Migrations
b.ToTable("Partitions");
});
modelBuilder.Entity("DiscImageChef.Server.Models.RemoteApplication", b =>
{
b.Property<int>("Id").ValueGeneratedOnAdd().HasColumnType("int");
b.Property<long>("Count").HasColumnType("bigint");
b.Property<string>("Name").HasColumnType("longtext CHARACTER SET utf8mb4");
b.Property<string>("Version").HasColumnType("longtext CHARACTER SET utf8mb4");
b.HasKey("Id");
b.ToTable("RemoteApplications");
});
modelBuilder.Entity("DiscImageChef.Server.Models.RemoteArchitecture", b =>
{
b.Property<int>("Id").ValueGeneratedOnAdd().HasColumnType("int");
b.Property<long>("Count").HasColumnType("bigint");
b.Property<string>("Name").HasColumnType("longtext CHARACTER SET utf8mb4");
b.HasKey("Id");
b.ToTable("RemoteArchitectures");
});
modelBuilder.Entity("DiscImageChef.Server.Models.RemoteOperatingSystem", b =>
{
b.Property<int>("Id").ValueGeneratedOnAdd().HasColumnType("int");
b.Property<long>("Count").HasColumnType("bigint");
b.Property<string>("Name").HasColumnType("longtext CHARACTER SET utf8mb4");
b.Property<string>("Version").HasColumnType("longtext CHARACTER SET utf8mb4");
b.HasKey("Id");
b.ToTable("RemoteOperatingSystems");
});
modelBuilder.Entity("DiscImageChef.Server.Models.UploadedReport", b =>
{
b.Property<int>("Id").ValueGeneratedOnAdd().HasColumnType("int");