767ff807a5
1. 将ABP相关包版本从10.0.1升级至10.5.0,LeptonX主题从5.0.1升级至5.5.0 2. 更新测试相关依赖包版本,统一项目包版本 3. 修改数据库连接字符串默认库名为Hua.Abp.Demo 4. 移除冗余的Swagger OpenIddict文档过滤器配置 5. 添加数据库迁移文件更新数据库结构
2292 lines
86 KiB
C#
2292 lines
86 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Hua.Abp.Demo.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
using Volo.Abp.EntityFrameworkCore;
|
|
|
|
#nullable disable
|
|
|
|
namespace Hua.Abp.Demo.Migrations
|
|
{
|
|
[DbContext(typeof(DemoDbContext))]
|
|
[Migration("20260713202122_AddLastSignInTimeToUsers")]
|
|
partial class AddLastSignInTimeToUsers
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("_Abp_DatabaseProvider", EfCoreDatabaseProvider.PostgreSql)
|
|
.HasAnnotation("ProductVersion", "10.0.9")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("Hua.Abp.Demo.Books.Book", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<float>("Price")
|
|
.HasColumnType("real");
|
|
|
|
b.Property<DateTime>("PublishDate")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<int>("Type")
|
|
.HasColumnType("integer");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("AppBooks", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLog", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ApplicationName")
|
|
.HasMaxLength(96)
|
|
.HasColumnType("character varying(96)")
|
|
.HasColumnName("ApplicationName");
|
|
|
|
b.Property<string>("BrowserInfo")
|
|
.HasMaxLength(512)
|
|
.HasColumnType("character varying(512)")
|
|
.HasColumnName("BrowserInfo");
|
|
|
|
b.Property<string>("ClientId")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)")
|
|
.HasColumnName("ClientId");
|
|
|
|
b.Property<string>("ClientIpAddress")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)")
|
|
.HasColumnName("ClientIpAddress");
|
|
|
|
b.Property<string>("ClientName")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)")
|
|
.HasColumnName("ClientName");
|
|
|
|
b.Property<string>("Comments")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("Comments");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<string>("CorrelationId")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)")
|
|
.HasColumnName("CorrelationId");
|
|
|
|
b.Property<string>("Exceptions")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int>("ExecutionDuration")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("ExecutionDuration");
|
|
|
|
b.Property<DateTime>("ExecutionTime")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("HttpMethod")
|
|
.HasMaxLength(16)
|
|
.HasColumnType("character varying(16)")
|
|
.HasColumnName("HttpMethod");
|
|
|
|
b.Property<int?>("HttpStatusCode")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("HttpStatusCode");
|
|
|
|
b.Property<Guid?>("ImpersonatorTenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("ImpersonatorTenantId");
|
|
|
|
b.Property<string>("ImpersonatorTenantName")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)")
|
|
.HasColumnName("ImpersonatorTenantName");
|
|
|
|
b.Property<Guid?>("ImpersonatorUserId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("ImpersonatorUserId");
|
|
|
|
b.Property<string>("ImpersonatorUserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("ImpersonatorUserName");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<string>("TenantName")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)")
|
|
.HasColumnName("TenantName");
|
|
|
|
b.Property<string>("Url")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("Url");
|
|
|
|
b.Property<Guid?>("UserId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("UserId");
|
|
|
|
b.Property<string>("UserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("UserName");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("TenantId", "ExecutionTime");
|
|
|
|
b.HasIndex("TenantId", "UserId", "ExecutionTime");
|
|
|
|
b.ToTable("AbpAuditLogs", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLogAction", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("AuditLogId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("AuditLogId");
|
|
|
|
b.Property<int>("ExecutionDuration")
|
|
.HasColumnType("integer")
|
|
.HasColumnName("ExecutionDuration");
|
|
|
|
b.Property<DateTime>("ExecutionTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("ExecutionTime");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("MethodName")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)")
|
|
.HasColumnName("MethodName");
|
|
|
|
b.Property<string>("Parameters")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)")
|
|
.HasColumnName("Parameters");
|
|
|
|
b.Property<string>("ServiceName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("ServiceName");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("AuditLogId");
|
|
|
|
b.HasIndex("TenantId", "ServiceName", "MethodName", "ExecutionTime");
|
|
|
|
b.ToTable("AbpAuditLogActions", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLogExcelFile", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<string>("FileName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("FileName");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("AbpAuditLogExcelFiles", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.EntityChange", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("AuditLogId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("AuditLogId");
|
|
|
|
b.Property<DateTime>("ChangeTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("ChangeTime");
|
|
|
|
b.Property<byte>("ChangeType")
|
|
.HasColumnType("smallint")
|
|
.HasColumnName("ChangeType");
|
|
|
|
b.Property<string>("EntityId")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)")
|
|
.HasColumnName("EntityId");
|
|
|
|
b.Property<Guid?>("EntityTenantId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("EntityTypeFullName")
|
|
.IsRequired()
|
|
.HasMaxLength(512)
|
|
.HasColumnType("character varying(512)")
|
|
.HasColumnName("EntityTypeFullName");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("AuditLogId");
|
|
|
|
b.HasIndex("TenantId", "EntityTypeFullName", "EntityId");
|
|
|
|
b.ToTable("AbpEntityChanges", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.EntityPropertyChange", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("EntityChangeId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("NewValue")
|
|
.HasMaxLength(512)
|
|
.HasColumnType("character varying(512)")
|
|
.HasColumnName("NewValue");
|
|
|
|
b.Property<string>("OriginalValue")
|
|
.HasMaxLength(512)
|
|
.HasColumnType("character varying(512)")
|
|
.HasColumnName("OriginalValue");
|
|
|
|
b.Property<string>("PropertyName")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)")
|
|
.HasColumnName("PropertyName");
|
|
|
|
b.Property<string>("PropertyTypeFullName")
|
|
.IsRequired()
|
|
.HasMaxLength(512)
|
|
.HasColumnType("character varying(512)")
|
|
.HasColumnName("PropertyTypeFullName");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("EntityChangeId");
|
|
|
|
b.ToTable("AbpEntityPropertyChanges", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.BackgroundJobs.BackgroundJobRecord", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ApplicationName")
|
|
.HasMaxLength(96)
|
|
.HasColumnType("character varying(96)");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsAbandoned")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false);
|
|
|
|
b.Property<string>("JobArgs")
|
|
.IsRequired()
|
|
.HasMaxLength(1048576)
|
|
.HasColumnType("character varying(1048576)");
|
|
|
|
b.Property<string>("JobName")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<DateTime?>("LastTryTime")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<DateTime>("NextTryTime")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<byte>("Priority")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("smallint")
|
|
.HasDefaultValue((byte)15);
|
|
|
|
b.Property<short>("TryCount")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("smallint")
|
|
.HasDefaultValue((short)0);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("IsAbandoned", "NextTryTime");
|
|
|
|
b.ToTable("AbpBackgroundJobs", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.BlobStoring.Database.DatabaseBlob", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<Guid>("ContainerId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<byte[]>("Content")
|
|
.HasMaxLength(2147483647)
|
|
.HasColumnType("bytea");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ContainerId");
|
|
|
|
b.HasIndex("TenantId", "ContainerId", "Name");
|
|
|
|
b.ToTable("AbpBlobs", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.BlobStoring.Database.DatabaseBlobContainer", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("TenantId", "Name");
|
|
|
|
b.ToTable("AbpBlobContainers", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.FeatureManagement.FeatureDefinitionRecord", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("AllowedProviders")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("DefaultValue")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("GroupName")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<bool>("IsAvailableToHost")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsVisibleToClients")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("ParentName")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("ValueType")
|
|
.HasMaxLength(2048)
|
|
.HasColumnType("character varying(2048)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GroupName");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpFeatures", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.FeatureManagement.FeatureGroupDefinitionRecord", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpFeatureGroups", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.FeatureManagement.FeatureValue", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("ProviderName")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name", "ProviderName", "ProviderKey")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpFeatureValues", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityClaimType", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsStatic")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("Regex")
|
|
.HasMaxLength(512)
|
|
.HasColumnType("character varying(512)");
|
|
|
|
b.Property<string>("RegexDescription")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<bool>("Required")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<int>("ValueType")
|
|
.HasColumnType("integer");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("AbpClaimTypes", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityLinkUser", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("SourceTenantId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("SourceUserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("TargetTenantId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("TargetUserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("SourceUserId", "SourceTenantId", "TargetUserId", "TargetTenantId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpLinkUsers", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<int>("EntityVersion")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsDefault")
|
|
.HasColumnType("boolean")
|
|
.HasColumnName("IsDefault");
|
|
|
|
b.Property<bool>("IsPublic")
|
|
.HasColumnType("boolean")
|
|
.HasColumnName("IsPublic");
|
|
|
|
b.Property<bool>("IsStatic")
|
|
.HasColumnType("boolean")
|
|
.HasColumnName("IsStatic");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("NormalizedName")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("NormalizedName");
|
|
|
|
b.ToTable("AbpRoles", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ClaimType")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasMaxLength(1024)
|
|
.HasColumnType("character varying(1024)");
|
|
|
|
b.Property<Guid>("RoleId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("RoleId");
|
|
|
|
b.ToTable("AbpRoleClaims", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentitySecurityLog", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Action")
|
|
.HasMaxLength(96)
|
|
.HasColumnType("character varying(96)");
|
|
|
|
b.Property<string>("ApplicationName")
|
|
.HasMaxLength(96)
|
|
.HasColumnType("character varying(96)");
|
|
|
|
b.Property<string>("BrowserInfo")
|
|
.HasMaxLength(512)
|
|
.HasColumnType("character varying(512)");
|
|
|
|
b.Property<string>("ClientId")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("ClientIpAddress")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<string>("CorrelationId")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("Identity")
|
|
.HasMaxLength(96)
|
|
.HasColumnType("character varying(96)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<string>("TenantName")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<Guid?>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("UserName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("TenantId", "Action");
|
|
|
|
b.HasIndex("TenantId", "ApplicationName");
|
|
|
|
b.HasIndex("TenantId", "Identity");
|
|
|
|
b.HasIndex("TenantId", "UserId");
|
|
|
|
b.ToTable("AbpSecurityLogs", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentitySession", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ClientId")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("Device")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("DeviceInfo")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("IpAddresses")
|
|
.HasMaxLength(2048)
|
|
.HasColumnType("character varying(2048)");
|
|
|
|
b.Property<DateTime?>("LastAccessed")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("SessionId")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<DateTime>("SignedIn")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Device");
|
|
|
|
b.HasIndex("SessionId");
|
|
|
|
b.HasIndex("TenantId", "UserId");
|
|
|
|
b.ToTable("AbpSessions", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<int>("AccessFailedCount")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasDefaultValue(0)
|
|
.HasColumnName("AccessFailedCount");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<Guid?>("DeleterId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("DeleterId");
|
|
|
|
b.Property<DateTime?>("DeletionTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("DeletionTime");
|
|
|
|
b.Property<string>("Email")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("Email");
|
|
|
|
b.Property<bool>("EmailConfirmed")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("EmailConfirmed");
|
|
|
|
b.Property<int>("EntityVersion")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsActive")
|
|
.HasColumnType("boolean")
|
|
.HasColumnName("IsActive");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("IsDeleted");
|
|
|
|
b.Property<bool>("IsExternal")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("IsExternal");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<DateTimeOffset?>("LastPasswordChangeTime")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<DateTimeOffset?>("LastSignInTime")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<bool>("Leaved")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("Leaved");
|
|
|
|
b.Property<bool>("LockoutEnabled")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("LockoutEnabled");
|
|
|
|
b.Property<DateTimeOffset?>("LockoutEnd")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<string>("Name")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)")
|
|
.HasColumnName("Name");
|
|
|
|
b.Property<string>("NormalizedEmail")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("NormalizedEmail");
|
|
|
|
b.Property<string>("NormalizedUserName")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("NormalizedUserName");
|
|
|
|
b.Property<string>("PasswordHash")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("PasswordHash");
|
|
|
|
b.Property<string>("PhoneNumber")
|
|
.HasMaxLength(16)
|
|
.HasColumnType("character varying(16)")
|
|
.HasColumnName("PhoneNumber");
|
|
|
|
b.Property<bool>("PhoneNumberConfirmed")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("PhoneNumberConfirmed");
|
|
|
|
b.Property<string>("SecurityStamp")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("SecurityStamp");
|
|
|
|
b.Property<bool>("ShouldChangePasswordOnNextLogin")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Surname")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)")
|
|
.HasColumnName("Surname");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<bool>("TwoFactorEnabled")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("TwoFactorEnabled");
|
|
|
|
b.Property<string>("UserName")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)")
|
|
.HasColumnName("UserName");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Email");
|
|
|
|
b.HasIndex("NormalizedEmail");
|
|
|
|
b.HasIndex("NormalizedUserName");
|
|
|
|
b.HasIndex("UserName");
|
|
|
|
b.ToTable("AbpUsers", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ClaimType")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ClaimValue")
|
|
.HasMaxLength(1024)
|
|
.HasColumnType("character varying(1024)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("AbpUserClaims", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserDelegation", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("EndTime")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<Guid>("SourceUserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("StartTime")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<Guid>("TargetUserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("AbpUserDelegations", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("LoginProvider")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("ProviderDisplayName")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.IsRequired()
|
|
.HasMaxLength(196)
|
|
.HasColumnType("character varying(196)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("UserId", "LoginProvider");
|
|
|
|
b.HasIndex("LoginProvider", "ProviderKey");
|
|
|
|
b.ToTable("AbpUserLogins", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserOrganizationUnit", b =>
|
|
{
|
|
b.Property<Guid>("OrganizationUnitId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("OrganizationUnitId", "UserId");
|
|
|
|
b.HasIndex("UserId", "OrganizationUnitId");
|
|
|
|
b.ToTable("AbpUserOrganizationUnits", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserPasskey", b =>
|
|
{
|
|
b.Property<byte[]>("CredentialId")
|
|
.HasMaxLength(1024)
|
|
.HasColumnType("bytea");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.HasKey("CredentialId");
|
|
|
|
b.HasIndex("UserId");
|
|
|
|
b.ToTable("AbpUserPasskeys", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserPasswordHistory", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Password")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<DateTimeOffset>("CreatedAt")
|
|
.HasColumnType("timestamp with time zone");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("UserId", "Password");
|
|
|
|
b.ToTable("AbpUserPasswordHistories", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("RoleId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("UserId", "RoleId");
|
|
|
|
b.HasIndex("RoleId", "UserId");
|
|
|
|
b.ToTable("AbpUserRoles", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b =>
|
|
{
|
|
b.Property<Guid>("UserId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("LoginProvider")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("Name")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.Property<string>("Value")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("UserId", "LoginProvider", "Name");
|
|
|
|
b.ToTable("AbpUserTokens", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnit", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Code")
|
|
.IsRequired()
|
|
.HasMaxLength(95)
|
|
.HasColumnType("character varying(95)")
|
|
.HasColumnName("Code");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<Guid?>("DeleterId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("DeleterId");
|
|
|
|
b.Property<DateTime?>("DeletionTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("DeletionTime");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)")
|
|
.HasColumnName("DisplayName");
|
|
|
|
b.Property<int>("EntityVersion")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("IsDeleted");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<Guid?>("ParentId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Code");
|
|
|
|
b.HasIndex("ParentId");
|
|
|
|
b.ToTable("AbpOrganizationUnits", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnitRole", b =>
|
|
{
|
|
b.Property<Guid>("OrganizationUnitId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid>("RoleId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("OrganizationUnitId", "RoleId");
|
|
|
|
b.HasIndex("RoleId", "OrganizationUnitId");
|
|
|
|
b.ToTable("AbpOrganizationUnitRoles", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.OpenIddict.Applications.OpenIddictApplication", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ApplicationType")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("ClientId")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<string>("ClientSecret")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ClientType")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("ClientUri")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<string>("ConsentType")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<Guid?>("DeleterId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("DeleterId");
|
|
|
|
b.Property<DateTime?>("DeletionTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("DeletionTime");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("DisplayNames")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("FrontChannelLogoutUri")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("IsDeleted");
|
|
|
|
b.Property<string>("JsonWebKeySet")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<string>("LogoUri")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Permissions")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PostLogoutRedirectUris")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Properties")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("RedirectUris")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Requirements")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Settings")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("OpenIddictApplications", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.OpenIddict.Authorizations.OpenIddictAuthorization", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("ApplicationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime?>("CreationDate")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("Properties")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Scopes")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Status")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("Subject")
|
|
.HasMaxLength(400)
|
|
.HasColumnType("character varying(400)");
|
|
|
|
b.Property<string>("Type")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApplicationId", "Status", "Subject", "Type");
|
|
|
|
b.ToTable("OpenIddictAuthorizations", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.OpenIddict.Scopes.OpenIddictScope", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<Guid?>("DeleterId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("DeleterId");
|
|
|
|
b.Property<DateTime?>("DeletionTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("DeletionTime");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Descriptions")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("DisplayNames")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("IsDeleted");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<string>("Name")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<string>("Properties")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Resources")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name");
|
|
|
|
b.ToTable("OpenIddictScopes", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.OpenIddict.Tokens.OpenIddictToken", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("ApplicationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<Guid?>("AuthorizationId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime?>("CreationDate")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<DateTime?>("ExpirationDate")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("Payload")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Properties")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<DateTime?>("RedemptionDate")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("ReferenceId")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<string>("Status")
|
|
.HasMaxLength(50)
|
|
.HasColumnType("character varying(50)");
|
|
|
|
b.Property<string>("Subject")
|
|
.HasMaxLength(400)
|
|
.HasColumnType("character varying(400)");
|
|
|
|
b.Property<string>("Type")
|
|
.HasMaxLength(150)
|
|
.HasColumnType("character varying(150)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("AuthorizationId");
|
|
|
|
b.HasIndex("ReferenceId");
|
|
|
|
b.HasIndex("ApplicationId", "Status", "Subject", "Type");
|
|
|
|
b.ToTable("OpenIddictTokens", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionDefinitionRecord", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("GroupName")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<bool>("IsEnabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("ManagementPermissionName")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<byte>("MultiTenancySide")
|
|
.HasColumnType("smallint");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("ParentName")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("Providers")
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("ResourceName")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("StateCheckers")
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("GroupName");
|
|
|
|
b.HasIndex("ResourceName", "Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpPermissions", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGrant", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("ProviderName")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("TenantId", "Name", "ProviderName", "ProviderKey")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpPermissionGrants", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.PermissionManagement.PermissionGroupDefinitionRecord", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpPermissionGroups", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.PermissionManagement.ResourcePermissionGrant", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("ProviderName")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("ResourceKey")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ResourceName")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<Guid?>("TenantId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("TenantId");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("TenantId", "Name", "ResourceName", "ResourceKey", "ProviderName", "ProviderKey")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpResourcePermissionGrants", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.SettingManagement.Setting", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("ProviderKey")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("ProviderName")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(2048)
|
|
.HasColumnType("character varying(2048)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name", "ProviderName", "ProviderKey")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpSettings", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.SettingManagement.SettingDefinitionRecord", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("DefaultValue")
|
|
.HasMaxLength(2048)
|
|
.HasColumnType("character varying(2048)");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(512)
|
|
.HasColumnType("character varying(512)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.IsRequired()
|
|
.HasMaxLength(256)
|
|
.HasColumnType("character varying(256)");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsEncrypted")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsInherited")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("IsVisibleToClients")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(128)
|
|
.HasColumnType("character varying(128)");
|
|
|
|
b.Property<string>("Providers")
|
|
.HasMaxLength(1024)
|
|
.HasColumnType("character varying(1024)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("AbpSettingDefinitions", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>
|
|
{
|
|
b.Property<Guid>("Id")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("ConcurrencyStamp")
|
|
.IsConcurrencyToken()
|
|
.IsRequired()
|
|
.HasMaxLength(40)
|
|
.HasColumnType("character varying(40)")
|
|
.HasColumnName("ConcurrencyStamp");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("CreationTime");
|
|
|
|
b.Property<Guid?>("CreatorId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("CreatorId");
|
|
|
|
b.Property<Guid?>("DeleterId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("DeleterId");
|
|
|
|
b.Property<DateTime?>("DeletionTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("DeletionTime");
|
|
|
|
b.Property<int>("EntityVersion")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("ExtraProperties")
|
|
.IsRequired()
|
|
.HasColumnType("text")
|
|
.HasColumnName("ExtraProperties");
|
|
|
|
b.Property<bool>("IsDeleted")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("boolean")
|
|
.HasDefaultValue(false)
|
|
.HasColumnName("IsDeleted");
|
|
|
|
b.Property<DateTime?>("LastModificationTime")
|
|
.HasColumnType("timestamp without time zone")
|
|
.HasColumnName("LastModificationTime");
|
|
|
|
b.Property<Guid?>("LastModifierId")
|
|
.HasColumnType("uuid")
|
|
.HasColumnName("LastModifierId");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("NormalizedName")
|
|
.IsRequired()
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name");
|
|
|
|
b.HasIndex("NormalizedName");
|
|
|
|
b.ToTable("AbpTenants", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.TenantManagement.TenantConnectionString", b =>
|
|
{
|
|
b.Property<Guid>("TenantId")
|
|
.HasColumnType("uuid");
|
|
|
|
b.Property<string>("Name")
|
|
.HasMaxLength(64)
|
|
.HasColumnType("character varying(64)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(1024)
|
|
.HasColumnType("character varying(1024)");
|
|
|
|
b.HasKey("TenantId", "Name");
|
|
|
|
b.ToTable("AbpTenantConnectionStrings", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLogAction", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.AuditLogging.AuditLog", null)
|
|
.WithMany("Actions")
|
|
.HasForeignKey("AuditLogId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.EntityChange", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.AuditLogging.AuditLog", null)
|
|
.WithMany("EntityChanges")
|
|
.HasForeignKey("AuditLogId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.EntityPropertyChange", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.AuditLogging.EntityChange", null)
|
|
.WithMany("PropertyChanges")
|
|
.HasForeignKey("EntityChangeId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.BlobStoring.Database.DatabaseBlob", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.BlobStoring.Database.DatabaseBlobContainer", null)
|
|
.WithMany()
|
|
.HasForeignKey("ContainerId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityRoleClaim", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.IdentityRole", null)
|
|
.WithMany("Claims")
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserClaim", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.IdentityUser", null)
|
|
.WithMany("Claims")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserLogin", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.IdentityUser", null)
|
|
.WithMany("Logins")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserOrganizationUnit", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.OrganizationUnit", null)
|
|
.WithMany()
|
|
.HasForeignKey("OrganizationUnitId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Volo.Abp.Identity.IdentityUser", null)
|
|
.WithMany("OrganizationUnits")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserPasskey", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.IdentityUser", null)
|
|
.WithMany("Passkeys")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.OwnsOne("Volo.Abp.Identity.IdentityPasskeyData", "Data", b1 =>
|
|
{
|
|
b1.Property<byte[]>("IdentityUserPasskeyCredentialId");
|
|
|
|
b1.Property<byte[]>("AttestationObject");
|
|
|
|
b1.Property<byte[]>("ClientDataJson");
|
|
|
|
b1.Property<DateTimeOffset>("CreatedAt");
|
|
|
|
b1.Property<bool>("IsBackedUp");
|
|
|
|
b1.Property<bool>("IsBackupEligible");
|
|
|
|
b1.Property<bool>("IsUserVerified");
|
|
|
|
b1.Property<string>("Name");
|
|
|
|
b1.Property<byte[]>("PublicKey");
|
|
|
|
b1.Property<long>("SignCount");
|
|
|
|
b1.PrimitiveCollection<string>("Transports");
|
|
|
|
b1.HasKey("IdentityUserPasskeyCredentialId");
|
|
|
|
b1.ToTable("AbpUserPasskeys");
|
|
|
|
b1
|
|
.ToJson("Data")
|
|
.HasColumnType("jsonb");
|
|
|
|
b1.WithOwner()
|
|
.HasForeignKey("IdentityUserPasskeyCredentialId");
|
|
});
|
|
|
|
b.Navigation("Data");
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserPasswordHistory", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.IdentityUser", null)
|
|
.WithMany("PasswordHistories")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserRole", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.IdentityRole", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Volo.Abp.Identity.IdentityUser", null)
|
|
.WithMany("Roles")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUserToken", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.IdentityUser", null)
|
|
.WithMany("Tokens")
|
|
.HasForeignKey("UserId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnit", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.OrganizationUnit", null)
|
|
.WithMany()
|
|
.HasForeignKey("ParentId");
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnitRole", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.Identity.OrganizationUnit", null)
|
|
.WithMany("Roles")
|
|
.HasForeignKey("OrganizationUnitId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.HasOne("Volo.Abp.Identity.IdentityRole", null)
|
|
.WithMany()
|
|
.HasForeignKey("RoleId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.OpenIddict.Authorizations.OpenIddictAuthorization", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.OpenIddict.Applications.OpenIddictApplication", null)
|
|
.WithMany()
|
|
.HasForeignKey("ApplicationId");
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.OpenIddict.Tokens.OpenIddictToken", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.OpenIddict.Applications.OpenIddictApplication", null)
|
|
.WithMany()
|
|
.HasForeignKey("ApplicationId");
|
|
|
|
b.HasOne("Volo.Abp.OpenIddict.Authorizations.OpenIddictAuthorization", null)
|
|
.WithMany()
|
|
.HasForeignKey("AuthorizationId");
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.TenantManagement.TenantConnectionString", b =>
|
|
{
|
|
b.HasOne("Volo.Abp.TenantManagement.Tenant", null)
|
|
.WithMany("ConnectionStrings")
|
|
.HasForeignKey("TenantId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.AuditLog", b =>
|
|
{
|
|
b.Navigation("Actions");
|
|
|
|
b.Navigation("EntityChanges");
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.AuditLogging.EntityChange", b =>
|
|
{
|
|
b.Navigation("PropertyChanges");
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityRole", b =>
|
|
{
|
|
b.Navigation("Claims");
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.IdentityUser", b =>
|
|
{
|
|
b.Navigation("Claims");
|
|
|
|
b.Navigation("Logins");
|
|
|
|
b.Navigation("OrganizationUnits");
|
|
|
|
b.Navigation("Passkeys");
|
|
|
|
b.Navigation("PasswordHistories");
|
|
|
|
b.Navigation("Roles");
|
|
|
|
b.Navigation("Tokens");
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.Identity.OrganizationUnit", b =>
|
|
{
|
|
b.Navigation("Roles");
|
|
});
|
|
|
|
modelBuilder.Entity("Volo.Abp.TenantManagement.Tenant", b =>
|
|
{
|
|
b.Navigation("ConnectionStrings");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|