fix(dal): из таблицы JobGroup удалено поле IsUmbrella

This commit is contained in:
Mikhail Trubnikov
2025-11-25 12:26:24 +10:00
parent 1aabd3a844
commit ce12f1b5fe
6 changed files with 4013 additions and 18 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,30 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace PARR.DAL.Migrations
{
/// <inheritdoc />
public partial class tblGroupRemoveIsUmbrella : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "IsUmbrella",
schema: "job",
table: "Groups");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<bool>(
name: "IsUmbrella",
schema: "job",
table: "Groups",
type: "boolean",
nullable: true);
}
}
}

View File

@@ -1669,9 +1669,6 @@ namespace PARR.DAL.Migrations
b.Property<bool>("IsAutoDistributionEnabled")
.HasColumnType("boolean");
b.Property<bool?>("IsUmbrella")
.HasColumnType("boolean");
b.Property<DateTimeOffset>("ReferenceDate")
.HasColumnType("timestamp with time zone");