using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace EF_ChangeLog.Migrations { /// public partial class log_reinforce3 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "Action", table: "StockChangeLogs", newName: "ActionType"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "ActionType", table: "StockChangeLogs", newName: "Action"); } } }