2026-06-09 11:58:20 +03:30
|
|
|
// <auto-generated />
|
|
|
|
|
using System;
|
2026-06-09 23:49:28 +03:30
|
|
|
using System.Collections.Generic;
|
2026-06-09 11:58:20 +03:30
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
|
using TeamUp.Modules.OrgBoard.Persistence;
|
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
|
|
namespace TeamUp.Modules.OrgBoard.Persistence.Migrations
|
|
|
|
|
{
|
|
|
|
|
[DbContext(typeof(OrgBoardDbContext))]
|
|
|
|
|
partial class OrgBoardDbContextModelSnapshot : ModelSnapshot
|
|
|
|
|
{
|
|
|
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
|
|
|
{
|
|
|
|
|
#pragma warning disable 612, 618
|
|
|
|
|
modelBuilder
|
|
|
|
|
.HasDefaultSchema("orgboard")
|
|
|
|
|
.HasAnnotation("ProductVersion", "10.0.8")
|
|
|
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
|
|
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
|
|
2026-06-09 23:49:28 +03:30
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.Agent", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("ApiConfigId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Autonomy")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(20)
|
|
|
|
|
.HasColumnType("character varying(20)");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("CreatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.PrimitiveCollection<List<string>>("Docs")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text[]");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("FallbackApiConfigId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
2026-06-13 19:25:43 +03:30
|
|
|
b.PrimitiveCollection<List<Guid>>("McpServerIds")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("uuid[]");
|
|
|
|
|
|
2026-06-09 23:49:28 +03:30
|
|
|
b.Property<string>("Monogram")
|
|
|
|
|
.HasMaxLength(8)
|
|
|
|
|
.HasColumnType("character varying(8)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(120)
|
|
|
|
|
.HasColumnType("character varying(120)");
|
|
|
|
|
|
2026-06-14 09:18:37 +03:30
|
|
|
b.Property<string>("Persona")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
2026-06-09 23:49:28 +03:30
|
|
|
b.Property<Guid>("SeatId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.PrimitiveCollection<List<string>>("SkillKeys")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text[]");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("UpdatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("SeatId")
|
|
|
|
|
.IsUnique();
|
|
|
|
|
|
|
|
|
|
b.ToTable("agents", "orgboard");
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-14 09:18:37 +03:30
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.AgentProfile", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("AuthoredByMemberId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Body")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ContentHash")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(64)
|
|
|
|
|
.HasColumnType("character varying(64)");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("CreatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Monogram")
|
|
|
|
|
.HasMaxLength(8)
|
|
|
|
|
.HasColumnType("character varying(8)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(200)
|
|
|
|
|
.HasColumnType("character varying(200)");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("OrganizationId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<int>("Origin")
|
|
|
|
|
.HasColumnType("integer");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ProfileKey")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(128)
|
|
|
|
|
.HasColumnType("character varying(128)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("RecommendedAutonomy")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(20)
|
|
|
|
|
.HasColumnType("character varying(20)");
|
|
|
|
|
|
|
|
|
|
b.PrimitiveCollection<List<string>>("Roles")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text[]");
|
|
|
|
|
|
|
|
|
|
b.PrimitiveCollection<List<string>>("SkillKeys")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text[]");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Status")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(20)
|
|
|
|
|
.HasColumnType("character varying(20)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Summary")
|
|
|
|
|
.HasMaxLength(1000)
|
|
|
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("UpdatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Version")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(32)
|
|
|
|
|
.HasColumnType("character varying(32)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Visibility")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(20)
|
|
|
|
|
.HasColumnType("character varying(20)");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("OrganizationId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("OrganizationId", "ProfileKey", "Version")
|
|
|
|
|
.IsUnique();
|
|
|
|
|
|
|
|
|
|
NpgsqlIndexBuilderExtensions.AreNullsDistinct(b.HasIndex("OrganizationId", "ProfileKey", "Version"), false);
|
|
|
|
|
|
|
|
|
|
b.ToTable("agent_profiles", "orgboard");
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-10 18:13:52 +03:30
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.Division", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("CreatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(200)
|
|
|
|
|
.HasColumnType("character varying(200)");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("OrganizationId");
|
|
|
|
|
|
|
|
|
|
b.ToTable("divisions", "orgboard");
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-09 11:58:20 +03:30
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.Organization", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("CreatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(200)
|
|
|
|
|
.HasColumnType("character varying(200)");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.ToTable("organizations", "orgboard");
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-10 18:13:52 +03:30
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.Product", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("CreatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("DivisionId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
2026-06-15 18:09:42 +03:30
|
|
|
b.Property<string>("Identity")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
2026-06-10 18:13:52 +03:30
|
|
|
b.Property<string>("Kind")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(16)
|
|
|
|
|
.HasColumnType("character varying(16)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(200)
|
|
|
|
|
.HasColumnType("character varying(200)");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("DivisionId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("OrganizationId");
|
|
|
|
|
|
|
|
|
|
b.ToTable("products", "orgboard");
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-15 20:40:57 +03:30
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.ProductProfile", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("AuthoredByMemberId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Body")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ContentHash")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(64)
|
|
|
|
|
.HasColumnType("character varying(64)");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("CreatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(200)
|
|
|
|
|
.HasColumnType("character varying(200)");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("OrganizationId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Origin")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(20)
|
|
|
|
|
.HasColumnType("character varying(20)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ProfileKey")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(128)
|
|
|
|
|
.HasColumnType("character varying(128)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Status")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(20)
|
|
|
|
|
.HasColumnType("character varying(20)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Summary")
|
|
|
|
|
.HasMaxLength(1000)
|
|
|
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("UpdatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Version")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(32)
|
|
|
|
|
.HasColumnType("character varying(32)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Visibility")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(20)
|
|
|
|
|
.HasColumnType("character varying(20)");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("OrganizationId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("OrganizationId", "ProfileKey", "Version")
|
|
|
|
|
.IsUnique();
|
|
|
|
|
|
|
|
|
|
NpgsqlIndexBuilderExtensions.AreNullsDistinct(b.HasIndex("OrganizationId", "ProfileKey", "Version"), false);
|
|
|
|
|
|
|
|
|
|
b.ToTable("product_profiles", "orgboard");
|
|
|
|
|
});
|
|
|
|
|
|
2026-06-09 11:58:20 +03:30
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.Seat", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("AgentId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("CreatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("MemberId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("RoleName")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(120)
|
|
|
|
|
.HasColumnType("character varying(120)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("State")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(16)
|
|
|
|
|
.HasColumnType("character varying(16)");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("TeamId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("TeamId");
|
|
|
|
|
|
|
|
|
|
b.ToTable("seats", "orgboard");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.Team", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("CreatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Name")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(200)
|
|
|
|
|
.HasColumnType("character varying(200)");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("OrganizationId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
2026-06-10 18:13:52 +03:30
|
|
|
b.Property<Guid?>("ProductId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
2026-06-09 11:58:20 +03:30
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("OrganizationId");
|
|
|
|
|
|
2026-06-10 18:13:52 +03:30
|
|
|
b.HasIndex("ProductId");
|
|
|
|
|
|
2026-06-09 11:58:20 +03:30
|
|
|
b.ToTable("teams", "orgboard");
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.WorkItem", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("AssigneeId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("AssigneeKind")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(16)
|
|
|
|
|
.HasColumnType("character varying(16)");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("CreatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("CreatedByMemberId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Description")
|
|
|
|
|
.HasColumnType("text");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("ParentId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Status")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(16)
|
|
|
|
|
.HasColumnType("character varying(16)");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("TeamId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Title")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(300)
|
|
|
|
|
.HasColumnType("character varying(300)");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("Type")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(16)
|
|
|
|
|
.HasColumnType("character varying(16)");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("UpdatedAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("TeamId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("AssigneeKind", "AssigneeId");
|
|
|
|
|
|
|
|
|
|
b.ToTable("work_items", "orgboard");
|
|
|
|
|
});
|
2026-06-10 12:54:13 +03:30
|
|
|
|
|
|
|
|
modelBuilder.Entity("TeamUp.Modules.OrgBoard.Domain.WorkItemTransition", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<Guid>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid?>("ActorMemberId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("FromStatus")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(16)
|
|
|
|
|
.HasColumnType("character varying(16)");
|
|
|
|
|
|
|
|
|
|
b.Property<DateTimeOffset>("OccurredAtUtc")
|
|
|
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("TeamId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.Property<string>("ToStatus")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(16)
|
|
|
|
|
.HasColumnType("character varying(16)");
|
|
|
|
|
|
|
|
|
|
b.Property<Guid>("WorkItemId")
|
|
|
|
|
.HasColumnType("uuid");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("TeamId");
|
|
|
|
|
|
|
|
|
|
b.HasIndex("WorkItemId");
|
|
|
|
|
|
|
|
|
|
b.ToTable("work_item_transitions", "orgboard");
|
|
|
|
|
});
|
2026-06-09 11:58:20 +03:30
|
|
|
#pragma warning restore 612, 618
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|