mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Move operating system statistics to database.
This commit is contained in:
@@ -963,6 +963,21 @@ namespace DiscImageChef.Database.Migrations
|
||||
b.ToTable("MediaFormats");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DiscImageChef.Database.Models.OperatingSystem", b =>
|
||||
{
|
||||
b.Property<int>("Id").ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<string>("Name");
|
||||
|
||||
b.Property<bool>("Synchronized");
|
||||
|
||||
b.Property<string>("Version");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("OperatingSystems");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DiscImageChef.Database.Models.Partition", b =>
|
||||
{
|
||||
b.Property<int>("Id").ValueGeneratedOnAdd();
|
||||
|
||||
Reference in New Issue
Block a user