fix(dal): из таблицы JobGroup удалено поле IsUmbrella
This commit is contained in:
3964
PARR.DAL/Migrations/20251125022359_tblGroupRemoveIsUmbrella.Designer.cs
generated
Normal file
3964
PARR.DAL/Migrations/20251125022359_tblGroupRemoveIsUmbrella.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -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");
|
||||
|
||||
|
||||
@@ -23,10 +23,10 @@ namespace PARR.DAL.Models.Job
|
||||
/// </summary>
|
||||
public required string GroupName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Связана ли работа с групповыми ЭК(зонтами)
|
||||
/// </summary>
|
||||
public bool? IsUmbrella { get; set; }
|
||||
///// <summary>
|
||||
///// Связана ли работа с групповыми ЭК(зонтами)
|
||||
///// </summary>
|
||||
//public bool? IsUmbrella { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Поле Короткое описания шаблона АСУ ЕСПП
|
||||
@@ -89,6 +89,7 @@ namespace PARR.DAL.Models.Job
|
||||
/// </summary>
|
||||
public DateTimeOffset ReferenceDate { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Включить автораспределение
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user