mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Store read results in report and database.
This commit is contained in:
@@ -619,8 +619,12 @@ namespace DiscImageChef.Database.Migrations
|
||||
{
|
||||
b.Property<int>("Id").ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<byte[]>("AdipData");
|
||||
|
||||
b.Property<int?>("AtaId");
|
||||
|
||||
b.Property<byte[]>("AtipData");
|
||||
|
||||
b.Property<uint?>("BlockSize");
|
||||
|
||||
b.Property<int?>("BlockSizeSql");
|
||||
@@ -629,6 +633,18 @@ namespace DiscImageChef.Database.Migrations
|
||||
|
||||
b.Property<long?>("BlocksSql");
|
||||
|
||||
b.Property<byte[]>("BluBcaData");
|
||||
|
||||
b.Property<byte[]>("BluDdsData");
|
||||
|
||||
b.Property<byte[]>("BluDiData");
|
||||
|
||||
b.Property<byte[]>("BluPacData");
|
||||
|
||||
b.Property<byte[]>("BluSaiData");
|
||||
|
||||
b.Property<byte[]>("C2PointersData");
|
||||
|
||||
b.Property<int?>("CHSId");
|
||||
|
||||
b.Property<bool?>("CanReadAACS");
|
||||
@@ -693,10 +709,38 @@ namespace DiscImageChef.Database.Migrations
|
||||
|
||||
b.Property<bool?>("CanReadTOC");
|
||||
|
||||
b.Property<byte[]>("CmiData");
|
||||
|
||||
b.Property<byte[]>("CorrectedSubchannelData");
|
||||
|
||||
b.Property<byte[]>("CorrectedSubchannelWithC2Data");
|
||||
|
||||
b.Property<int?>("CurrentCHSId");
|
||||
|
||||
b.Property<byte[]>("DcbData");
|
||||
|
||||
b.Property<byte?>("Density");
|
||||
|
||||
b.Property<byte[]>("DmiData");
|
||||
|
||||
b.Property<byte[]>("DvdAacsData");
|
||||
|
||||
b.Property<byte[]>("DvdBcaData");
|
||||
|
||||
b.Property<byte[]>("DvdDdsData");
|
||||
|
||||
b.Property<byte[]>("DvdLayerData");
|
||||
|
||||
b.Property<byte[]>("DvdSaiData");
|
||||
|
||||
b.Property<byte[]>("EmbossedPfiData");
|
||||
|
||||
b.Property<byte[]>("FullTocData");
|
||||
|
||||
b.Property<byte[]>("HLDTSTReadRawDVDData");
|
||||
|
||||
b.Property<byte[]>("HdCmiData");
|
||||
|
||||
b.Property<byte[]>("IdentifyData");
|
||||
|
||||
b.Property<ulong?>("LBA48Sectors");
|
||||
@@ -707,6 +751,10 @@ namespace DiscImageChef.Database.Migrations
|
||||
|
||||
b.Property<int?>("LBASectorsSql");
|
||||
|
||||
b.Property<byte[]>("LeadInData");
|
||||
|
||||
b.Property<byte[]>("LeadOutData");
|
||||
|
||||
b.Property<ushort?>("LogicalAlignment");
|
||||
|
||||
b.Property<short?>("LogicalAlignmentSql");
|
||||
@@ -731,14 +779,86 @@ namespace DiscImageChef.Database.Migrations
|
||||
|
||||
b.Property<string>("Model");
|
||||
|
||||
b.Property<byte[]>("NecReadCddaData");
|
||||
|
||||
b.Property<ushort?>("NominalRotationRate");
|
||||
|
||||
b.Property<short?>("NominalRotationRateSql");
|
||||
|
||||
b.Property<byte[]>("PQSubchannelData");
|
||||
|
||||
b.Property<byte[]>("PQSubchannelWithC2Data");
|
||||
|
||||
b.Property<byte[]>("PfiData");
|
||||
|
||||
b.Property<uint?>("PhysicalBlockSize");
|
||||
|
||||
b.Property<int?>("PhysicalBlockSizeSql");
|
||||
|
||||
b.Property<byte[]>("PioneerReadCddaData");
|
||||
|
||||
b.Property<byte[]>("PioneerReadCddaMsfData");
|
||||
|
||||
b.Property<byte[]>("PlextorReadCddaData");
|
||||
|
||||
b.Property<byte[]>("PlextorReadRawDVDData");
|
||||
|
||||
b.Property<byte[]>("PmaData");
|
||||
|
||||
b.Property<byte[]>("PriData");
|
||||
|
||||
b.Property<byte[]>("RWSubchannelData");
|
||||
|
||||
b.Property<byte[]>("RWSubchannelWithC2Data");
|
||||
|
||||
b.Property<byte[]>("Read10Data");
|
||||
|
||||
b.Property<byte[]>("Read12Data");
|
||||
|
||||
b.Property<byte[]>("Read16Data");
|
||||
|
||||
b.Property<byte[]>("Read6Data");
|
||||
|
||||
b.Property<byte[]>("ReadCdData");
|
||||
|
||||
b.Property<byte[]>("ReadCdFullData");
|
||||
|
||||
b.Property<byte[]>("ReadCdMsfData");
|
||||
|
||||
b.Property<byte[]>("ReadCdMsfFullData");
|
||||
|
||||
b.Property<byte[]>("ReadDmaData");
|
||||
|
||||
b.Property<byte[]>("ReadDmaLba48Data");
|
||||
|
||||
b.Property<byte[]>("ReadDmaLbaData");
|
||||
|
||||
b.Property<byte[]>("ReadDmaRetryData");
|
||||
|
||||
b.Property<byte[]>("ReadDmaRetryLbaData");
|
||||
|
||||
b.Property<byte[]>("ReadLba48Data");
|
||||
|
||||
b.Property<byte[]>("ReadLbaData");
|
||||
|
||||
b.Property<byte[]>("ReadLong10Data");
|
||||
|
||||
b.Property<byte[]>("ReadLong16Data");
|
||||
|
||||
b.Property<byte[]>("ReadLongData");
|
||||
|
||||
b.Property<byte[]>("ReadLongLbaData");
|
||||
|
||||
b.Property<byte[]>("ReadLongRetryData");
|
||||
|
||||
b.Property<byte[]>("ReadLongRetryLbaData");
|
||||
|
||||
b.Property<byte[]>("ReadRetryLbaData");
|
||||
|
||||
b.Property<byte[]>("ReadSectorsData");
|
||||
|
||||
b.Property<byte[]>("ReadSectorsRetryData");
|
||||
|
||||
b.Property<int?>("ScsiId");
|
||||
|
||||
b.Property<bool?>("SolidStateDevice");
|
||||
@@ -809,6 +929,10 @@ namespace DiscImageChef.Database.Migrations
|
||||
|
||||
b.Property<bool?>("SupportsSeekLba");
|
||||
|
||||
b.Property<byte[]>("TocData");
|
||||
|
||||
b.Property<byte[]>("Track1PregapData");
|
||||
|
||||
b.Property<ushort?>("UnformattedBPS");
|
||||
|
||||
b.Property<short?>("UnformattedBPSSql");
|
||||
|
||||
Reference in New Issue
Block a user