31 lines
818 B
C#
31 lines
818 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace PARR.DAL.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class tblJobsRenameResponseArea : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "ResponseArea",
|
|
schema: "job",
|
|
table: "Jobs",
|
|
newName: "ResponseAreaMask");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "ResponseAreaMask",
|
|
schema: "job",
|
|
table: "Jobs",
|
|
newName: "ResponseArea");
|
|
}
|
|
}
|
|
}
|