using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Aaru.Database.Migrations
{
///
public partial class AddLiteOnRawReadDvdToReport : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "LiteOnReadRawDVDData",
table: "TestedMedia",
type: "BLOB",
nullable: true);
migrationBuilder.AddColumn(
name: "SupportsLiteOnReadRawDVD",
table: "TestedMedia",
type: "INTEGER",
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "LiteOnReadRawDVDData",
table: "TestedMedia");
migrationBuilder.DropColumn(
name: "SupportsLiteOnReadRawDVD",
table: "TestedMedia");
}
}
}