32 lines
836 B
C#
32 lines
836 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
||
|
||
#nullable disable
|
||
|
||
namespace PARR.DAL.Migrations
|
||
{
|
||
/// <inheritdoc />
|
||
public partial class tblJobsAddResponseArea : Migration
|
||
{
|
||
/// <inheritdoc />
|
||
protected override void Up(MigrationBuilder migrationBuilder)
|
||
{
|
||
migrationBuilder.AddColumn<string>(
|
||
name: "ResponseArea",
|
||
schema: "job",
|
||
table: "Jobs",
|
||
type: "text",
|
||
nullable: false,
|
||
defaultValue: "%ЗО_РГ%");
|
||
}
|
||
|
||
/// <inheritdoc />
|
||
protected override void Down(MigrationBuilder migrationBuilder)
|
||
{
|
||
migrationBuilder.DropColumn(
|
||
name: "ResponseArea",
|
||
schema: "job",
|
||
table: "Jobs");
|
||
}
|
||
}
|
||
}
|