mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Store CompactDisc read offsets in database.
This commit is contained in:
@@ -886,6 +886,29 @@ namespace DiscImageChef.Database.Migrations
|
||||
b.ToTable("Usb");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DiscImageChef.Database.Models.CdOffset", b =>
|
||||
{
|
||||
b.Property<int>("Id").ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<DateTime>("AddedWhen");
|
||||
|
||||
b.Property<float>("Agreement");
|
||||
|
||||
b.Property<string>("Manufacturer");
|
||||
|
||||
b.Property<string>("Model");
|
||||
|
||||
b.Property<DateTime>("ModifiedWhen");
|
||||
|
||||
b.Property<short>("Offset");
|
||||
|
||||
b.Property<int>("Submissions");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("CdOffsets");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("DiscImageChef.Database.Models.Command", b =>
|
||||
{
|
||||
b.Property<int>("Id").ValueGeneratedOnAdd();
|
||||
|
||||
Reference in New Issue
Block a user