using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Aberwyn.Migrations { public partial class AddTorrentItemTable : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsDownloaded", table: "TorrentItems", type: "tinyint(1)", nullable: false, defaultValue: false); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsDownloaded", table: "TorrentItems"); } } }