1111 lines
40 KiB
C#
1111 lines
40 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Duende.IdentityServer.EntityFramework.DbContexts;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
#nullable disable
|
|
|
|
namespace ZeroFramework.IdentityServer.API.Migrations.ConfigurationMigrations
|
|
{
|
|
[DbContext(typeof(ConfigurationDbContext))]
|
|
[Migration("20231205051937_InitialCreate")]
|
|
partial class InitialCreate
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "8.0.0")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
|
|
|
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResource", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("AllowedAccessTokenSigningAlgorithms")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("nvarchar(1000)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastAccessed")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("RequireResourceIndicator")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("ShowInDiscoveryDocument")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("Updated")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ApiResources", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceClaim", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ApiResourceId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId", "Type")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ApiResourceClaims", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceProperty", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ApiResourceId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("nvarchar(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId", "Key")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ApiResourceProperties", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceScope", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ApiResourceId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Scope")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId", "Scope")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ApiResourceScopes", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceSecret", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ApiResourceId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("nvarchar(1000)");
|
|
|
|
b.Property<DateTime?>("Expiration")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("nvarchar(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(4000)
|
|
.HasColumnType("nvarchar(4000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ApiResourceId");
|
|
|
|
b.ToTable("ApiResourceSecrets", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScope", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("nvarchar(1000)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<bool>("Emphasize")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastAccessed")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("Required")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("ShowInDiscoveryDocument")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("Updated")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ApiScopes", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScopeClaim", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ScopeId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ScopeId", "Type")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ApiScopeClaims", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScopeProperty", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("nvarchar(250)");
|
|
|
|
b.Property<int>("ScopeId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ScopeId", "Key")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ApiScopeProperties", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.Client", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("AbsoluteRefreshTokenLifetime")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("AccessTokenLifetime")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("AccessTokenType")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<bool>("AllowAccessTokensViaBrowser")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("AllowOfflineAccess")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("AllowPlainTextPkce")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("AllowRememberConsent")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<string>("AllowedIdentityTokenSigningAlgorithms")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<bool>("AlwaysIncludeUserClaimsInIdToken")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("AlwaysSendClientClaims")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<int>("AuthorizationCodeLifetime")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<bool>("BackChannelLogoutSessionRequired")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<string>("BackChannelLogoutUri")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.Property<int?>("CibaLifetime")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("ClientClaimsPrefix")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<string>("ClientId")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<string>("ClientName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<string>("ClientUri")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.Property<int?>("ConsentLifetime")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<bool?>("CoordinateLifetimeWithUserSession")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<TimeSpan>("DPoPClockSkew")
|
|
.HasColumnType("time");
|
|
|
|
b.Property<int>("DPoPValidationMode")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("nvarchar(1000)");
|
|
|
|
b.Property<int>("DeviceCodeLifetime")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<bool>("EnableLocalLogin")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("FrontChannelLogoutSessionRequired")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<string>("FrontChannelLogoutUri")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.Property<int>("IdentityTokenLifetime")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<bool>("IncludeJwtId")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<string>("InitiateLoginUri")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.Property<DateTime?>("LastAccessed")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("LogoUri")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<string>("PairWiseSubjectSalt")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<int?>("PollingInterval")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("ProtocolType")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<int>("RefreshTokenExpiration")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<int>("RefreshTokenUsage")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<bool>("RequireClientSecret")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("RequireConsent")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("RequireDPoP")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("RequirePkce")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("RequireRequestObject")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<int>("SlidingRefreshTokenLifetime")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<bool>("UpdateAccessTokenClaimsOnRefresh")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("Updated")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("UserCodeType")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<int?>("UserSsoLifetime")
|
|
.HasColumnType("int");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId")
|
|
.IsUnique();
|
|
|
|
b.ToTable("Clients", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientClaim", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("nvarchar(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("nvarchar(250)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId", "Type", "Value")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ClientClaims", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientCorsOrigin", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Origin")
|
|
.IsRequired()
|
|
.HasMaxLength(150)
|
|
.HasColumnType("nvarchar(150)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId", "Origin")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ClientCorsOrigins", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientGrantType", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("GrantType")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("nvarchar(250)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId", "GrantType")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ClientGrantTypes", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientIdPRestriction", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Provider")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId", "Provider")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ClientIdPRestrictions", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientPostLogoutRedirectUri", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("PostLogoutRedirectUri")
|
|
.IsRequired()
|
|
.HasMaxLength(400)
|
|
.HasColumnType("nvarchar(400)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId", "PostLogoutRedirectUri")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ClientPostLogoutRedirectUris", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientProperty", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("nvarchar(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId", "Key")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ClientProperties", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientRedirectUri", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("RedirectUri")
|
|
.IsRequired()
|
|
.HasMaxLength(400)
|
|
.HasColumnType("nvarchar(400)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId", "RedirectUri")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ClientRedirectUris", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientScope", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Scope")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId", "Scope")
|
|
.IsUnique();
|
|
|
|
b.ToTable("ClientScopes", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientSecret", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("ClientId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.Property<DateTime?>("Expiration")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("nvarchar(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(4000)
|
|
.HasColumnType("nvarchar(4000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("ClientSecrets", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityProvider", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("LastAccessed")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<string>("Properties")
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Scheme")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(20)
|
|
.HasColumnType("nvarchar(20)");
|
|
|
|
b.Property<DateTime?>("Updated")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Scheme")
|
|
.IsUnique();
|
|
|
|
b.ToTable("IdentityProviders", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResource", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(1000)
|
|
.HasColumnType("nvarchar(1000)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<bool>("Emphasize")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("Enabled")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<bool>("NonEditable")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("Required")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("ShowInDiscoveryDocument")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<DateTime?>("Updated")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Name")
|
|
.IsUnique();
|
|
|
|
b.ToTable("IdentityResources", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResourceClaim", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("IdentityResourceId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("IdentityResourceId", "Type")
|
|
.IsUnique();
|
|
|
|
b.ToTable("IdentityResourceClaims", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResourceProperty", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<int>("IdentityResourceId")
|
|
.HasColumnType("int");
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasMaxLength(250)
|
|
.HasColumnType("nvarchar(250)");
|
|
|
|
b.Property<string>("Value")
|
|
.IsRequired()
|
|
.HasMaxLength(2000)
|
|
.HasColumnType("nvarchar(2000)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("IdentityResourceId", "Key")
|
|
.IsUnique();
|
|
|
|
b.ToTable("IdentityResourceProperties", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceClaim", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("UserClaims")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ApiResource");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceProperty", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ApiResource");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceScope", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("Scopes")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ApiResource");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResourceSecret", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiResource", "ApiResource")
|
|
.WithMany("Secrets")
|
|
.HasForeignKey("ApiResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("ApiResource");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScopeClaim", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiScope", "Scope")
|
|
.WithMany("UserClaims")
|
|
.HasForeignKey("ScopeId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Scope");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScopeProperty", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.ApiScope", "Scope")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("ScopeId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Scope");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientClaim", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("Claims")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientCorsOrigin", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("AllowedCorsOrigins")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientGrantType", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("AllowedGrantTypes")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientIdPRestriction", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("IdentityProviderRestrictions")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientPostLogoutRedirectUri", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("PostLogoutRedirectUris")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientProperty", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientRedirectUri", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("RedirectUris")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientScope", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("AllowedScopes")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ClientSecret", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.Client", "Client")
|
|
.WithMany("ClientSecrets")
|
|
.HasForeignKey("ClientId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResourceClaim", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.IdentityResource", "IdentityResource")
|
|
.WithMany("UserClaims")
|
|
.HasForeignKey("IdentityResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("IdentityResource");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.IdentityResourceProperty", b =>
|
|
{
|
|
b.HasOne("Duende.IdentityServer.EntityFramework.Entities.IdentityResource", "IdentityResource")
|
|
.WithMany("Properties")
|
|
.HasForeignKey("IdentityResourceId")
|
|
.OnDelete(DeleteBehavior.Cascade)
|
|
.IsRequired();
|
|
|
|
b.Navigation("IdentityResource");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiResource", b =>
|
|
{
|
|
b.Navigation("Properties");
|
|
|
|
b.Navigation("Scopes");
|
|
|
|
b.Navigation("Secrets");
|
|
|
|
b.Navigation("UserClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ApiScope", b =>
|
|
{
|
|
b.Navigation("Properties");
|
|
|
|
b.Navigation("UserClaims");
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.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("Duende.IdentityServer.EntityFramework.Entities.IdentityResource", b =>
|
|
{
|
|
b.Navigation("Properties");
|
|
|
|
b.Navigation("UserClaims");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|