using Microsoft.EntityFrameworkCore.Migrations; namespace RdtClient.Data.Migrations { public partial class Downloads_Add_Path : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Path", table: "Downloads", type: "TEXT", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Path", table: "Downloads"); } } }