using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Marco.Pms.DataAccess.Migrations
{
///
public partial class addJobRoleIdInProjectAllocation : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "EmployeeRoleId",
table: "ProjectAllocations");
migrationBuilder.AddColumn(
name: "JobRoleId",
table: "ProjectAllocations",
type: "int",
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "JobRoleId",
table: "ProjectAllocations");
migrationBuilder.AddColumn(
name: "EmployeeRoleId",
table: "ProjectAllocations",
type: "char(36)",
nullable: true,
collation: "ascii_general_ci");
}
}
}