mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-05 12:03:14 -05:00
984 lines
38 KiB
C#
984 lines
38 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using IdentityServer4.EntityFramework.DbContexts;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
namespace Kyoo.Models.DatabaseMigrations.IdentityConfiguration
|
|
{
|
|
[DbContext(typeof(ConfigurationDbContext))]
|
|
partial class ConfigurationDbContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63)
|
|
.HasAnnotation("ProductVersion", "5.0.3")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResource", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<string>("AllowedAccessTokenSigningAlgorithms")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<DateTime?>("LastAccessed")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.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("IdentityServer4.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()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId");
|
|
|
|
b.ToTable("ApiResourceClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("character varying(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId");
|
|
|
|
b.ToTable("ApiResourceProperties");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId");
|
|
|
|
b.ToTable("ApiResourceScopes");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
b.Property<DateTime?>("Expiration")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("character varying(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(4000)
|
|
.HasColumnType("character varying(4000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId");
|
|
|
|
b.ToTable("ApiResourceSecrets");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScope", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<bool>("Emphasize")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(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("IdentityServer4.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()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ScopeId");
|
|
|
|
b.ToTable("ApiScopeClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScopeProperty", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("character varying(250)");
|
|
|
|
b.Property<int>("ScopeId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ScopeId");
|
|
|
|
b.ToTable("ApiScopeProperties");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(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")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.Property<string>("ClientClaimsPrefix")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<string>("ClientId")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<string>("ClientName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<string>("ClientUri")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.Property<int?>("ConsentLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("character varying(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")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(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")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("PairWiseSubjectSalt")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<string>("ProtocolType")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(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")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("character varying(100)");
|
|
|
|
b.Property<int?>("UserSsoLifetime")
|
|
.HasColumnType("integer");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("Clients");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("character varying(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("character varying(250)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(150)
|
|
.HasColumnType("character varying(150)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientCorsOrigins");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("character varying(250)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientGrantTypes");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientIdPRestrictions");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientPostLogoutRedirectUris");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("character varying(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientProperties");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientRedirectUris");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientScopes");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.Property<DateTime?>("Expiration")
|
|
.HasColumnType("timestamp without time zone");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("character varying(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(4000)
|
|
.HasColumnType("character varying(4000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientSecrets");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("character varying(1000)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.Property<bool>("Emphasize")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(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("IdentityServer4.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()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("character varying(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("IdentityResourceId");
|
|
|
|
b.ToTable("IdentityResourceClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.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()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("character varying(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("character varying(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("IdentityResourceId");
|
|
|
|
b.ToTable("IdentityResourceProperties");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceClaim", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("UserClaims")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ApiResource");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceProperty", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ApiResource");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceScope", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("Scopes")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ApiResource");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceSecret", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("Secrets")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ApiResource");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScopeClaim", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.ApiScope", "Scope")
|
|
.WithMany("UserClaims")
|
|
.HasForeignKey("ScopeId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Scope");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScopeProperty", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.ApiScope", "Scope")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("ScopeId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Scope");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientClaim", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("Claims")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientCorsOrigin", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("AllowedCorsOrigins")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientGrantType", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("AllowedGrantTypes")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientIdPRestriction", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("IdentityProviderRestrictions")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientPostLogoutRedirectUri", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("PostLogoutRedirectUris")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientProperty", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientRedirectUri", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("RedirectUris")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientScope", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("AllowedScopes")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientSecret", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("ClientSecrets")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityResourceClaim", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.IdentityResource", "IdentityResource")
|
|
.WithMany("UserClaims")
|
|
.HasForeignKey("IdentityResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("IdentityResource");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityResourceProperty", b =>
|
|
{
|
|
b.HasOne("IdentityServer4.EntityFramework.Entities.IdentityResource", "IdentityResource")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("IdentityResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("IdentityResource");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResource", b =>
|
|
{
|
|
b.Navigation("Properties");
|
|
|
|
b.Navigation("Scopes");
|
|
|
|
b.Navigation("Secrets");
|
|
|
|
b.Navigation("UserClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScope", b =>
|
|
{
|
|
b.Navigation("Properties");
|
|
|
|
b.Navigation("UserClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.Client", b =>
|
|
{
|
|
b.Navigation("AllowedCorsOrigins");
|
|
|
|
b.Navigation("AllowedGrantTypes");
|
|
|
|
b.Navigation("AllowedScopes");
|
|
|
|
b.Navigation("Claims");
|
|
|
|
b.Navigation("ClientSecrets");
|
|
|
|
b.Navigation("IdentityProviderRestrictions");
|
|
|
|
b.Navigation("PostLogoutRedirectUris");
|
|
|
|
b.Navigation("Properties");
|
|
|
|
b.Navigation("RedirectUris");
|
|
});
|
|
|
|
modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityResource", b =>
|
|
{
|
|
b.Navigation("Properties");
|
|
|
|
b.Navigation("UserClaims");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|