using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace HotelDataBaseImplement.Migrations { /// public partial class TempMigr : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "DinnerPrice", table: "Dinners", newName: "DinnerPrice"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "DinnerPrice", table: "Dinners", newName: "DinnetPrice"); } } }