feat(api): Выдача заданий агенту.
This commit is contained in:
2911
PARR.DAL/Migrations/20231017014846_TblAppInWorksAddAgentTimeOut.Designer.cs
generated
Normal file
2911
PARR.DAL/Migrations/20231017014846_TblAppInWorksAddAgentTimeOut.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,28 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace PARR.DAL.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class TblAppInWorksAddAgentTimeOut : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<int>(
|
||||
name: "AgentTimeOutSec",
|
||||
table: "ApplicationsInWorks",
|
||||
type: "integer",
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "AgentTimeOutSec",
|
||||
table: "ApplicationsInWorks");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -481,6 +481,9 @@ namespace PARR.DAL.Migrations
|
||||
b.Property<string>("AgentScript")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int?>("AgentTimeOutSec")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<Guid>("ApplicationId")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user