29 lines
793 B
C#
29 lines
793 B
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
#nullable disable
|
|||
|
|
|
|||
|
|
namespace BMA.EHR.Infrastructure.Migrations
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
public partial class updatetablePlacementReciveaddprofileid : Migration
|
|||
|
|
{
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.RenameColumn(
|
|||
|
|
name: "positionName",
|
|||
|
|
table: "PlacementReceives",
|
|||
|
|
newName: "position");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/// <inheritdoc />
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.RenameColumn(
|
|||
|
|
name: "position",
|
|||
|
|
table: "PlacementReceives",
|
|||
|
|
newName: "positionName");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|