using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Novelly.Api.Data.Migrations { /// public partial class AddImportJobRequestedBy : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "RequestedByUserId", table: "ImportJobs", type: "TEXT", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "RequestedByUserId", table: "ImportJobs"); } } }