mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
Add statistics for remote.
This commit is contained in:
2347
DiscImageChef.Server/Migrations/20191204182314_RemoteStatistics.Designer.cs
generated
Normal file
2347
DiscImageChef.Server/Migrations/20191204182314_RemoteStatistics.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,52 @@
|
||||
using Microsoft.EntityFrameworkCore.Metadata;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace DiscImageChef.Server.Migrations
|
||||
{
|
||||
public partial class RemoteStatistics : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.CreateTable("RemoteApplications", table => new
|
||||
{
|
||||
Id = table.Column<int>().
|
||||
Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||
Name = table.Column<string>(nullable: true), Version = table.Column<string>(nullable: true),
|
||||
Count = table.Column<long>()
|
||||
}, constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_RemoteApplications", x => x.Id);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable("RemoteArchitectures", table => new
|
||||
{
|
||||
Id = table.Column<int>().
|
||||
Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||
Name = table.Column<string>(nullable: true), Count = table.Column<long>()
|
||||
}, constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_RemoteArchitectures", x => x.Id);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateTable("RemoteOperatingSystems", table => new
|
||||
{
|
||||
Id = table.Column<int>().
|
||||
Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
|
||||
Name = table.Column<string>(nullable: true), Version = table.Column<string>(nullable: true),
|
||||
Count = table.Column<long>()
|
||||
}, constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_RemoteOperatingSystems", x => x.Id);
|
||||
});
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropTable("RemoteApplications");
|
||||
|
||||
migrationBuilder.DropTable("RemoteArchitectures");
|
||||
|
||||
migrationBuilder.DropTable("RemoteOperatingSystems");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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");
|
||||
|
||||
Reference in New Issue
Block a user