2020-07-10 20:30:34 +01:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
|
2024-05-03 22:18:49 +01:00
|
|
|
|
namespace Aaru.Server.Database.Migrations
|
2020-07-10 20:30:34 +01:00
|
|
|
|
{
|
|
|
|
|
|
public partial class AddCanReadGdRomUsingSwapDisc : Migration
|
|
|
|
|
|
{
|
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder) =>
|
2020-07-22 15:26:02 +01:00
|
|
|
|
migrationBuilder.AddColumn<bool>("CanReadGdRomUsingSwapDisc", "Devices", nullable: true,
|
|
|
|
|
|
defaultValue: null);
|
2020-07-10 20:30:34 +01:00
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder) =>
|
|
|
|
|
|
migrationBuilder.DropColumn("CanReadGdRomUsingSwapDisc", "Devices");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|