Add field for scrambled READ CD support.

This commit is contained in:
2019-11-24 22:40:32 +00:00
parent e091be7991
commit 9e90847e3a
8 changed files with 2361 additions and 1 deletions

View File

@@ -624,6 +624,8 @@ namespace DiscImageChef.Server.Migrations
b.Property<bool?>("CanReadCMI").HasColumnType("tinyint(1)");
b.Property<bool?>("CanReadCdScrambled").HasColumnType("tinyint(1)");
b.Property<bool?>("CanReadCorrectedSubchannel").HasColumnType("tinyint(1)");
b.Property<bool?>("CanReadCorrectedSubchannelWithC2").HasColumnType("tinyint(1)");
@@ -788,6 +790,8 @@ namespace DiscImageChef.Server.Migrations
b.Property<byte[]>("ReadCdMsfFullData").HasColumnType("longblob");
b.Property<byte[]>("ReadCdScrambledData").HasColumnType("longblob");
b.Property<byte[]>("ReadDmaData").HasColumnType("longblob");
b.Property<byte[]>("ReadDmaLba48Data").HasColumnType("longblob");