mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
21 lines
713 B
C#
21 lines
713 B
C#
|
|
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");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|