using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace RdtClient.Data.Migrations { public partial class Downloads_Add_Folder : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Folder", table: "Downloads", type: "TEXT", nullable: false, defaultValue: ""); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Folder", table: "Downloads"); } } }