using Microsoft.EntityFrameworkCore.Migrations; namespace ProRestaurant.Migrations { public partial class _006 : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "Provice", table: "UserAddresses", newName: "Province"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.RenameColumn( name: "Province", table: "UserAddresses", newName: "Provice"); } } }