using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace PARR.DAL.Migrations { /// public partial class tblWorksRenameShortNameToTemplateSuffix : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "ShortName", table: "Works", newName: "TemplateSuffix"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "TemplateSuffix", table: "Works", newName: "ShortName"); } } }