mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add database entry for optimal count of sectors for multiple read in devices.
This commit is contained in:
1561
DiscImageChef.Database/Migrations/20190102230036_AddOptimalReadMultipleCount.Designer.cs
generated
Normal file
1561
DiscImageChef.Database/Migrations/20190102230036_AddOptimalReadMultipleCount.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,17 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace DiscImageChef.Database.Migrations
|
||||
{
|
||||
public partial class AddOptimalReadMultipleCount : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<int>("OptimalMultipleSectorsRead", "Devices", nullable: false, defaultValue: 0);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn("OptimalMultipleSectorsRead", "Devices");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1078,6 +1078,8 @@ namespace DiscImageChef.Database.Migrations
|
||||
|
||||
b.Property<int?>("MultiMediaCardId");
|
||||
|
||||
b.Property<int>("OptimalMultipleSectorsRead");
|
||||
|
||||
b.Property<int?>("PCMCIAId");
|
||||
|
||||
b.Property<string>("Revision");
|
||||
|
||||
Reference in New Issue
Block a user