909 lines
36 KiB
C#
909 lines
36 KiB
C#
// <auto-generated />
|
|
|
|
using System;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
using LiteCharmsSecurity.Admin.EntityFramework.Shared.DbContexts;
|
|
|
|
namespace LiteCharmsSecurity.Admin.EntityFramework.PostgreSQL.Migrations.IdentityServerConfiguration
|
|
{
|
|
[DbContext(typeof(IdentityServerConfigurationDbContext))]
|
|
[Migration("20210310153645_AddRequireResourceIndicator")]
|
|
partial class AddRequireResourceIndicator
|
|
{
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn)
|
|
.HasAnnotation("ProductVersion", "3.1.9")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResource", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<string>("AllowedAccessTokenSigningAlgorithms")
|
|
.HasColumnType("character varying(100)")
|
|
.HasMaxLength(100);
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("character varying(1000)")
|
|
.HasMaxLength(1000);
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime?>("LastAccessed")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("RequireResourceIndicator")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("ShowInDiscoveryDocument")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime?>("Updated")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ApiResources");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceClaim", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ApiResourceId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId");
|
|
|
|
b.ToTable("ApiResourceClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceProperty", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ApiResourceId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(250)")
|
|
.HasMaxLength(250);
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId");
|
|
|
|
b.ToTable("ApiResourceProperties");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceScope", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ApiResourceId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Scope")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId");
|
|
|
|
b.ToTable("ApiResourceScopes");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceSecret", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ApiResourceId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("character varying(1000)")
|
|
.HasMaxLength(1000);
|
|
|
|
b.Property<DateTime?>("Expiration")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(250)")
|
|
.HasMaxLength(250);
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(4000)")
|
|
.HasMaxLength(4000);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId");
|
|
|
|
b.ToTable("ApiResourceSecrets");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScope", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("character varying(1000)")
|
|
.HasMaxLength(1000);
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<bool>("Emphasize")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<bool>("Required")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("ShowInDiscoveryDocument")
|
|
.HasColumnType("boolean");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ApiScopes");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScopeClaim", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ScopeId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ScopeId");
|
|
|
|
b.ToTable("ApiScopeClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScopeProperty", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(250)")
|
|
.HasMaxLength(250);
|
|
|
|
b.Property<int>("ScopeId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ScopeId");
|
|
|
|
b.ToTable("ApiScopeProperties");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.Client", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("AbsoluteRefreshTokenLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<int>("AccessTokenLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<int>("AccessTokenType")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<bool>("AllowAccessTokensViaBrowser")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("AllowOfflineAccess")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("AllowPlainTextPkce")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("AllowRememberConsent")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("AllowedIdentityTokenSigningAlgorithms")
|
|
.HasColumnType("character varying(100)")
|
|
.HasMaxLength(100);
|
|
|
|
b.Property<bool>("AlwaysIncludeUserClaimsInIdToken")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("AlwaysSendClientClaims")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<int>("AuthorizationCodeLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<bool>("BackChannelLogoutSessionRequired")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("BackChannelLogoutUri")
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.Property<string>("ClientClaimsPrefix")
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<string>("ClientId")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<string>("ClientName")
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<string>("ClientUri")
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.Property<int?>("ConsentLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("character varying(1000)")
|
|
.HasMaxLength(1000);
|
|
|
|
b.Property<int>("DeviceCodeLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<bool>("EnableLocalLogin")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("FrontChannelLogoutSessionRequired")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("FrontChannelLogoutUri")
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.Property<int>("IdentityTokenLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<bool>("IncludeJwtId")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime?>("LastAccessed")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("LogoUri")
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("PairWiseSubjectSalt")
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<string>("ProtocolType")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<int>("RefreshTokenExpiration")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<int>("RefreshTokenUsage")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<bool>("RequireClientSecret")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("RequireConsent")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("RequirePkce")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("RequireRequestObject")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<int>("SlidingRefreshTokenLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<bool>("UpdateAccessTokenClaimsOnRefresh")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime?>("Updated")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("UserCodeType")
|
|
.HasColumnType("character varying(100)")
|
|
.HasMaxLength(100);
|
|
|
|
b.Property<int?>("UserSsoLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("Clients");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientClaim", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(250)")
|
|
.HasMaxLength(250);
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(250)")
|
|
.HasMaxLength(250);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientCorsOrigin", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Origin")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(150)")
|
|
.HasMaxLength(150);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientCorsOrigins");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientGrantType", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("GrantType")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(250)")
|
|
.HasMaxLength(250);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientGrantTypes");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientIdPRestriction", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Provider")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientIdPRestrictions");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientPostLogoutRedirectUri", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("PostLogoutRedirectUri")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientPostLogoutRedirectUris");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientProperty", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(250)")
|
|
.HasMaxLength(250);
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientProperties");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientRedirectUri", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("RedirectUri")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientRedirectUris");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientScope", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Scope")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientScopes");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientSecret", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.Property<DateTime?>("Expiration")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(250)")
|
|
.HasMaxLength(250);
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(4000)")
|
|
.HasMaxLength(4000);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientSecrets");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResource", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Description")
|
|
.HasColumnType("character varying(1000)")
|
|
.HasMaxLength(1000);
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<bool>("Emphasize")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("Required")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("ShowInDiscoveryDocument")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime?>("Updated")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("IdentityResources");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResourceClaim", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("IdentityResourceId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(200)")
|
|
.HasMaxLength(200);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("IdentityResourceId");
|
|
|
|
b.ToTable("IdentityResourceClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResourceProperty", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("IdentityResourceId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(250)")
|
|
.HasMaxLength(250);
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasColumnType("character varying(2000)")
|
|
.HasMaxLength(2000);
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("IdentityResourceId");
|
|
|
|
b.ToTable("IdentityResourceProperties");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceClaim", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("UserClaims")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceProperty", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceScope", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("Scopes")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceSecret", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("Secrets")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScopeClaim", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiScope", "Scope")
|
|
.WithMany("UserClaims")
|
|
.HasForeignKey("ScopeId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScopeProperty", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiScope", "Scope")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("ScopeId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientClaim", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("Claims")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientCorsOrigin", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("AllowedCorsOrigins")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientGrantType", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("AllowedGrantTypes")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientIdPRestriction", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("IdentityProviderRestrictions")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientPostLogoutRedirectUri", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("PostLogoutRedirectUris")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientProperty", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientRedirectUri", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("RedirectUris")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientScope", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("AllowedScopes")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientSecret", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("ClientSecrets")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResourceClaim", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.IdentityResource", "IdentityResource")
|
|
.WithMany("UserClaims")
|
|
.HasForeignKey("IdentityResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResourceProperty", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.IdentityResource", "IdentityResource")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("IdentityResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|