mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add field to indicate if a device can read GD-ROM discs using swap trick.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
namespace Aaru.Database.Migrations
|
||||
{
|
||||
public partial class AddCanReadGdRomUsingSwapDisc : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder) =>
|
||||
migrationBuilder.AddColumn<bool>("CanReadGdRomUsingSwapDisc", "Devices", nullable: false,
|
||||
defaultValue: false);
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder) =>
|
||||
migrationBuilder.DropColumn("CanReadGdRomUsingSwapDisc", "Devices");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user