using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace barkmanapi.Migrations { /// public partial class changedordertojobpt2 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "order_id", table: "job_items", newName: "job_id"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "job_id", table: "job_items", newName: "order_id"); } } }