using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace FlexJobApi.Database.Migrations.Migrations
{
///
public partial class UpdateUser0812003 : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "PhoneNumber",
table: "EnterpriseEmployee",
newName: "ContactPhoneNumber");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "ContactPhoneNumber",
table: "EnterpriseEmployee",
newName: "PhoneNumber");
}
}
}