Synchronize with latest server models.

This commit is contained in:
2019-12-07 18:08:31 +00:00
parent e55eeb5ed7
commit 8877df16e3
10 changed files with 1553 additions and 5 deletions

View File

@@ -3,8 +3,17 @@
<component name="ContentModelStore"> <component name="ContentModelStore">
<e p="$USER_HOME$/.Rider2019.3/system/extResources" t="IncludeRecursive" /> <e p="$USER_HOME$/.Rider2019.3/system/extResources" t="IncludeRecursive" />
<e p="$USER_HOME$/.Rider2019.3/system/resharper-host/local/Transient/ReSharperHost/v193/SolutionCaches/_DiscImageChef.-1491758497.00" t="ExcludeRecursive" /> <e p="$USER_HOME$/.Rider2019.3/system/resharper-host/local/Transient/ReSharperHost/v193/SolutionCaches/_DiscImageChef.-1491758497.00" t="ExcludeRecursive" />
<e p="$USER_HOME$/.config/git/ignore" t="IncludeRecursive" />
<e p="$USER_HOME$/.nuget/packages/sqlitepclraw.lib.e_sqlite3.linux/1.1.12/runtimes/linux-x64/native/libe_sqlite3.so" t="Include" /> <e p="$USER_HOME$/.nuget/packages/sqlitepclraw.lib.e_sqlite3.linux/1.1.12/runtimes/linux-x64/native/libe_sqlite3.so" t="Include" />
<e p="$PROJECT_DIR$" t="IncludeFlat"> <e p="$PROJECT_DIR$" t="IncludeFlat">
<e p=".git/info/exclude" t="IncludeRecursive" />
<e p=".git/modules/CICMMetadata/info/exclude" t="IncludeRecursive" />
<e p=".git/modules/DiscImageChef.CommonTypes/info/exclude" t="IncludeRecursive" />
<e p=".git/modules/DiscImageChef.Console/info/exclude" t="IncludeRecursive" />
<e p=".git/modules/DiscImageChef.Decoders/info/exclude" t="IncludeRecursive" />
<e p=".git/modules/DiscImageChef.Dto/info/exclude" t="IncludeRecursive" />
<e p=".git/modules/DiscImageChef.Helpers/info/exclude" t="IncludeRecursive" />
<e p=".git/modules/cuetoolsnet/info/exclude" t="IncludeRecursive" />
<e p=".github/CODE_OF_CONDUCT.md" t="Include" /> <e p=".github/CODE_OF_CONDUCT.md" t="Include" />
<e p=".github/ISSUE_TEMPLATE.md" t="Include" /> <e p=".github/ISSUE_TEMPLATE.md" t="Include" />
<e p=".github/PULL_REQUEST_TEMPLATE.md" t="Include" /> <e p=".github/PULL_REQUEST_TEMPLATE.md" t="Include" />
@@ -361,6 +370,8 @@
<e p="20190525183723_IdForDensityCode.cs" t="Include" /> <e p="20190525183723_IdForDensityCode.cs" t="Include" />
<e p="20191103000828_MakeFieldsUnsigned.Designer.cs" t="Include" /> <e p="20191103000828_MakeFieldsUnsigned.Designer.cs" t="Include" />
<e p="20191103000828_MakeFieldsUnsigned.cs" t="Include" /> <e p="20191103000828_MakeFieldsUnsigned.cs" t="Include" />
<e p="20191207175444_SyncWithServerChanges.Designer.cs" t="Include" />
<e p="20191207175444_SyncWithServerChanges.cs" t="Include" />
<e p="DicContextModelSnapshot.cs" t="Include" /> <e p="DicContextModelSnapshot.cs" t="Include" />
</e> </e>
<e p="Models" t="Include"> <e p="Models" t="Include">
@@ -1245,6 +1256,7 @@
<e p="DiscImageChef.EntityFramework.csproj" t="IncludeRecursive" /> <e p="DiscImageChef.EntityFramework.csproj" t="IncludeRecursive" />
<e p="Program.cs" t="Include" /> <e p="Program.cs" t="Include" />
<e p="bin" t="ExcludeRecursive" /> <e p="bin" t="ExcludeRecursive" />
<e p="discimagechef.db" t="Include" />
<e p="obj" t="ExcludeRecursive"> <e p="obj" t="ExcludeRecursive">
<e p="Debug" t="Include"> <e p="Debug" t="Include">
<e p="netcoreapp2.0" t="Include"> <e p="netcoreapp2.0" t="Include">

View File

@@ -101,6 +101,8 @@
<Compile Include="Migrations\20190525183723_IdForDensityCode.Designer.cs" /> <Compile Include="Migrations\20190525183723_IdForDensityCode.Designer.cs" />
<Compile Include="Migrations\20191103000828_MakeFieldsUnsigned.cs" /> <Compile Include="Migrations\20191103000828_MakeFieldsUnsigned.cs" />
<Compile Include="Migrations\20191103000828_MakeFieldsUnsigned.Designer.cs" /> <Compile Include="Migrations\20191103000828_MakeFieldsUnsigned.Designer.cs" />
<Compile Include="Migrations\20191207175444_SyncWithServerChanges.cs" />
<Compile Include="Migrations\20191207175444_SyncWithServerChanges.Designer.cs" />
<Compile Include="Migrations\DicContextModelSnapshot.cs" /> <Compile Include="Migrations\DicContextModelSnapshot.cs" />
<Compile Include="Models\CdOffset.cs" /> <Compile Include="Models\CdOffset.cs" />
<Compile Include="Models\Command.cs" /> <Compile Include="Models\Command.cs" />

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,21 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace DiscImageChef.Database.Migrations
{
public partial class SyncWithServerChanges : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>("CanReadCdScrambled", "TestedMedia", nullable: true);
migrationBuilder.AddColumn<byte[]>("ReadCdScrambledData", "TestedMedia", nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn("CanReadCdScrambled", "TestedMedia");
migrationBuilder.DropColumn("ReadCdScrambledData", "TestedMedia");
}
}
}

View File

@@ -623,6 +623,8 @@ namespace DiscImageChef.Database.Migrations
b.Property<bool?>("CanReadCMI"); b.Property<bool?>("CanReadCMI");
b.Property<bool?>("CanReadCdScrambled");
b.Property<bool?>("CanReadCorrectedSubchannel"); b.Property<bool?>("CanReadCorrectedSubchannel");
b.Property<bool?>("CanReadCorrectedSubchannelWithC2"); b.Property<bool?>("CanReadCorrectedSubchannelWithC2");
@@ -787,6 +789,8 @@ namespace DiscImageChef.Database.Migrations
b.Property<byte[]>("ReadCdMsfFullData"); b.Property<byte[]>("ReadCdMsfFullData");
b.Property<byte[]>("ReadCdScrambledData");
b.Property<byte[]>("ReadDmaData"); b.Property<byte[]>("ReadDmaData");
b.Property<byte[]>("ReadDmaLba48Data"); b.Property<byte[]>("ReadDmaLba48Data");