using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace PARR.DAL.Migrations
{
///
public partial class tblJobGroupAddIsGroupByResponsible : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "IsGroupByResponsible",
schema: "job",
table: "Groups",
type: "boolean",
nullable: true);
migrationBuilder.InsertData(
table: "ParrComponents",
columns: new[] { "Id", "Description", "Name" },
values: new object[] { 13, "Генератор шаблонов", "TemplateTaskGenerator" });
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DeleteData(
table: "ParrComponents",
keyColumn: "Id",
keyValue: 13);
migrationBuilder.DropColumn(
name: "IsGroupByResponsible",
schema: "job",
table: "Groups");
}
}
}