Last active
February 13, 2020 08:50
-
-
Save aaronhoffman/d4ac6312e09b6d2140137aaca1a67653 to your computer and use it in GitHub Desktop.
IdentityServer Configuration SQL Tables EF Migration Issue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using Microsoft.EntityFrameworkCore.Migrations; | |
| namespace SqlServer.Data.Migrations.IdentityServer.ConfigurationDb | |
| { | |
| public partial class InitialIdentityServerConfigurationDbMigration : Migration | |
| { | |
| protected override void Up(MigrationBuilder migrationBuilder) | |
| { | |
| migrationBuilder.AddColumn<bool>( | |
| name: "RequireRequestObject", | |
| table: "Clients", | |
| nullable: false, | |
| defaultValue: false); | |
| } | |
| protected override void Down(MigrationBuilder migrationBuilder) | |
| { | |
| migrationBuilder.DropColumn( | |
| name: "RequireRequestObject", | |
| table: "Clients"); | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // <auto-generated /> | |
| using System; | |
| using IdentityServer4.EntityFramework.DbContexts; | |
| using Microsoft.EntityFrameworkCore; | |
| using Microsoft.EntityFrameworkCore.Infrastructure; | |
| using Microsoft.EntityFrameworkCore.Metadata; | |
| using Microsoft.EntityFrameworkCore.Migrations; | |
| using Microsoft.EntityFrameworkCore.Storage.ValueConversion; | |
| namespace SqlServer.Data.Migrations.IdentityServer.ConfigurationDb | |
| { | |
| [DbContext(typeof(ConfigurationDbContext))] | |
| [Migration("20200213083642_InitialIdentityServerConfigurationDbMigration")] | |
| partial class InitialIdentityServerConfigurationDbMigration | |
| { | |
| protected override void BuildTargetModel(ModelBuilder modelBuilder) | |
| { | |
| #pragma warning disable 612, 618 | |
| modelBuilder | |
| .HasAnnotation("ProductVersion", "3.1.0") | |
| .HasAnnotation("Relational:MaxIdentifierLength", 128) | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResource", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<string>("AllowedAccessTokenSigningAlgorithms") | |
| .HasColumnType("nvarchar(100)") | |
| .HasMaxLength(100); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(1000); | |
| b.Property<string>("DisplayName") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("Enabled") | |
| .HasColumnType("bit"); | |
| b.Property<DateTime?>("LastAccessed") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Name") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("NonEditable") | |
| .HasColumnType("bit"); | |
| b.Property<DateTime?>("Updated") | |
| .HasColumnType("datetime2"); | |
| b.HasKey("Id"); | |
| b.HasIndex("Name") | |
| .IsUnique(); | |
| b.ToTable("ApiResources"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceClaim", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiResourceId"); | |
| b.ToTable("ApiClaims"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceProperty", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Key") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiResourceId"); | |
| b.ToTable("ApiProperties"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScope", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(1000); | |
| b.Property<string>("DisplayName") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("Emphasize") | |
| .HasColumnType("bit"); | |
| b.Property<string>("Name") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("Required") | |
| .HasColumnType("bit"); | |
| b.Property<bool>("ShowInDiscoveryDocument") | |
| .HasColumnType("bit"); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiResourceId"); | |
| b.HasIndex("Name") | |
| .IsUnique(); | |
| b.ToTable("ApiScopes"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScopeClaim", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiScopeId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiScopeId"); | |
| b.ToTable("ApiScopeClaims"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiSecret", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiResourceId") | |
| .HasColumnType("int"); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(1000); | |
| b.Property<DateTime?>("Expiration") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(4000)") | |
| .HasMaxLength(4000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiResourceId"); | |
| b.ToTable("ApiSecrets"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.Client", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| 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") | |
| .HasColumnType("nvarchar(100)") | |
| .HasMaxLength(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") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<string>("ClientClaimsPrefix") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<string>("ClientId") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<string>("ClientName") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<string>("ClientUri") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<int?>("ConsentLifetime") | |
| .HasColumnType("int"); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(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") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<int>("IdentityTokenLifetime") | |
| .HasColumnType("int"); | |
| b.Property<bool>("IncludeJwtId") | |
| .HasColumnType("bit"); | |
| b.Property<DateTime?>("LastAccessed") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("LogoUri") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<bool>("NonEditable") | |
| .HasColumnType("bit"); | |
| b.Property<string>("PairWiseSubjectSalt") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<string>("ProtocolType") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(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>("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") | |
| .HasColumnType("nvarchar(100)") | |
| .HasMaxLength(100); | |
| b.Property<int?>("UserSsoLifetime") | |
| .HasColumnType("int"); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId") | |
| .IsUnique(); | |
| b.ToTable("Clients"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientClaim", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientClaims"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientCorsOrigin", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Origin") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(150)") | |
| .HasMaxLength(150); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientCorsOrigins"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientGrantType", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("GrantType") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientGrantTypes"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientIdPRestriction", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Provider") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientIdPRestrictions"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientPostLogoutRedirectUri", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("PostLogoutRedirectUri") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientPostLogoutRedirectUris"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientProperty", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Key") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientProperties"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientRedirectUri", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("RedirectUri") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientRedirectUris"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientScope", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Scope") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientScopes"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientSecret", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<DateTime?>("Expiration") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(4000)") | |
| .HasMaxLength(4000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientSecrets"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityClaim", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("IdentityResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("IdentityResourceId"); | |
| b.ToTable("IdentityClaims"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityResource", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(1000); | |
| b.Property<string>("DisplayName") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("Emphasize") | |
| .HasColumnType("bit"); | |
| b.Property<bool>("Enabled") | |
| .HasColumnType("bit"); | |
| b.Property<string>("Name") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(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"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityResourceProperty", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("IdentityResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Key") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("IdentityResourceId"); | |
| b.ToTable("IdentityProperties"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceClaim", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource") | |
| .WithMany("UserClaims") | |
| .HasForeignKey("ApiResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceProperty", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource") | |
| .WithMany("Properties") | |
| .HasForeignKey("ApiResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScope", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource") | |
| .WithMany("Scopes") | |
| .HasForeignKey("ApiResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScopeClaim", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiScope", "ApiScope") | |
| .WithMany("UserClaims") | |
| .HasForeignKey("ApiScopeId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiSecret", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource") | |
| .WithMany("Secrets") | |
| .HasForeignKey("ApiResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientClaim", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("Claims") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientCorsOrigin", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("AllowedCorsOrigins") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientGrantType", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("AllowedGrantTypes") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientIdPRestriction", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("IdentityProviderRestrictions") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientPostLogoutRedirectUri", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("PostLogoutRedirectUris") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientProperty", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("Properties") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientRedirectUri", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("RedirectUris") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientScope", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("AllowedScopes") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientSecret", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("ClientSecrets") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityClaim", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.IdentityResource", "IdentityResource") | |
| .WithMany("UserClaims") | |
| .HasForeignKey("IdentityResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityResourceProperty", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.IdentityResource", "IdentityResource") | |
| .WithMany("Properties") | |
| .HasForeignKey("IdentityResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| #pragma warning restore 612, 618 | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| IF OBJECT_ID(N'[__EFMigrationsHistory]') IS NULL | |
| BEGIN | |
| CREATE TABLE [__EFMigrationsHistory] ( | |
| [MigrationId] nvarchar(150) NOT NULL, | |
| [ProductVersion] nvarchar(32) NOT NULL, | |
| CONSTRAINT [PK___EFMigrationsHistory] PRIMARY KEY ([MigrationId]) | |
| ); | |
| END; | |
| GO | |
| CREATE TABLE [ApiResources] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Enabled] bit NOT NULL, | |
| [Name] nvarchar(200) NOT NULL, | |
| [DisplayName] nvarchar(200) NULL, | |
| [Description] nvarchar(1000) NULL, | |
| [AllowedAccessTokenSigningAlgorithms] nvarchar(100) NULL, | |
| [Created] datetime2 NOT NULL, | |
| [Updated] datetime2 NULL, | |
| [LastAccessed] datetime2 NULL, | |
| [NonEditable] bit NOT NULL, | |
| CONSTRAINT [PK_ApiResources] PRIMARY KEY ([Id]) | |
| ); | |
| GO | |
| CREATE TABLE [Clients] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Enabled] bit NOT NULL, | |
| [ClientId] nvarchar(200) NOT NULL, | |
| [ProtocolType] nvarchar(200) NOT NULL, | |
| [RequireClientSecret] bit NOT NULL, | |
| [ClientName] nvarchar(200) NULL, | |
| [Description] nvarchar(1000) NULL, | |
| [ClientUri] nvarchar(2000) NULL, | |
| [LogoUri] nvarchar(2000) NULL, | |
| [RequireConsent] bit NOT NULL, | |
| [AllowRememberConsent] bit NOT NULL, | |
| [AlwaysIncludeUserClaimsInIdToken] bit NOT NULL, | |
| [RequirePkce] bit NOT NULL, | |
| [AllowPlainTextPkce] bit NOT NULL, | |
| [AllowAccessTokensViaBrowser] bit NOT NULL, | |
| [FrontChannelLogoutUri] nvarchar(2000) NULL, | |
| [FrontChannelLogoutSessionRequired] bit NOT NULL, | |
| [BackChannelLogoutUri] nvarchar(2000) NULL, | |
| [BackChannelLogoutSessionRequired] bit NOT NULL, | |
| [AllowOfflineAccess] bit NOT NULL, | |
| [IdentityTokenLifetime] int NOT NULL, | |
| [AllowedIdentityTokenSigningAlgorithms] nvarchar(100) NULL, | |
| [AccessTokenLifetime] int NOT NULL, | |
| [AuthorizationCodeLifetime] int NOT NULL, | |
| [ConsentLifetime] int NULL, | |
| [AbsoluteRefreshTokenLifetime] int NOT NULL, | |
| [SlidingRefreshTokenLifetime] int NOT NULL, | |
| [RefreshTokenUsage] int NOT NULL, | |
| [UpdateAccessTokenClaimsOnRefresh] bit NOT NULL, | |
| [RefreshTokenExpiration] int NOT NULL, | |
| [AccessTokenType] int NOT NULL, | |
| [EnableLocalLogin] bit NOT NULL, | |
| [IncludeJwtId] bit NOT NULL, | |
| [AlwaysSendClientClaims] bit NOT NULL, | |
| [ClientClaimsPrefix] nvarchar(200) NULL, | |
| [PairWiseSubjectSalt] nvarchar(200) NULL, | |
| [Created] datetime2 NOT NULL, | |
| [Updated] datetime2 NULL, | |
| [LastAccessed] datetime2 NULL, | |
| [UserSsoLifetime] int NULL, | |
| [UserCodeType] nvarchar(100) NULL, | |
| [DeviceCodeLifetime] int NOT NULL, | |
| [NonEditable] bit NOT NULL, | |
| CONSTRAINT [PK_Clients] PRIMARY KEY ([Id]) | |
| ); | |
| GO | |
| CREATE TABLE [IdentityResources] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Enabled] bit NOT NULL, | |
| [Name] nvarchar(200) NOT NULL, | |
| [DisplayName] nvarchar(200) NULL, | |
| [Description] nvarchar(1000) NULL, | |
| [Required] bit NOT NULL, | |
| [Emphasize] bit NOT NULL, | |
| [ShowInDiscoveryDocument] bit NOT NULL, | |
| [Created] datetime2 NOT NULL, | |
| [Updated] datetime2 NULL, | |
| [NonEditable] bit NOT NULL, | |
| CONSTRAINT [PK_IdentityResources] PRIMARY KEY ([Id]) | |
| ); | |
| GO | |
| CREATE TABLE [ApiClaims] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Type] nvarchar(200) NOT NULL, | |
| [ApiResourceId] int NOT NULL, | |
| CONSTRAINT [PK_ApiClaims] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ApiClaims_ApiResources_ApiResourceId] FOREIGN KEY ([ApiResourceId]) REFERENCES [ApiResources] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ApiProperties] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Key] nvarchar(250) NOT NULL, | |
| [Value] nvarchar(2000) NOT NULL, | |
| [ApiResourceId] int NOT NULL, | |
| CONSTRAINT [PK_ApiProperties] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ApiProperties_ApiResources_ApiResourceId] FOREIGN KEY ([ApiResourceId]) REFERENCES [ApiResources] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ApiScopes] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Name] nvarchar(200) NOT NULL, | |
| [DisplayName] nvarchar(200) NULL, | |
| [Description] nvarchar(1000) NULL, | |
| [Required] bit NOT NULL, | |
| [Emphasize] bit NOT NULL, | |
| [ShowInDiscoveryDocument] bit NOT NULL, | |
| [ApiResourceId] int NOT NULL, | |
| CONSTRAINT [PK_ApiScopes] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ApiScopes_ApiResources_ApiResourceId] FOREIGN KEY ([ApiResourceId]) REFERENCES [ApiResources] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ApiSecrets] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Description] nvarchar(1000) NULL, | |
| [Value] nvarchar(4000) NOT NULL, | |
| [Expiration] datetime2 NULL, | |
| [Type] nvarchar(250) NOT NULL, | |
| [Created] datetime2 NOT NULL, | |
| [ApiResourceId] int NOT NULL, | |
| CONSTRAINT [PK_ApiSecrets] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ApiSecrets_ApiResources_ApiResourceId] FOREIGN KEY ([ApiResourceId]) REFERENCES [ApiResources] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ClientClaims] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Type] nvarchar(250) NOT NULL, | |
| [Value] nvarchar(250) NOT NULL, | |
| [ClientId] int NOT NULL, | |
| CONSTRAINT [PK_ClientClaims] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ClientClaims_Clients_ClientId] FOREIGN KEY ([ClientId]) REFERENCES [Clients] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ClientCorsOrigins] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Origin] nvarchar(150) NOT NULL, | |
| [ClientId] int NOT NULL, | |
| CONSTRAINT [PK_ClientCorsOrigins] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ClientCorsOrigins_Clients_ClientId] FOREIGN KEY ([ClientId]) REFERENCES [Clients] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ClientGrantTypes] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [GrantType] nvarchar(250) NOT NULL, | |
| [ClientId] int NOT NULL, | |
| CONSTRAINT [PK_ClientGrantTypes] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ClientGrantTypes_Clients_ClientId] FOREIGN KEY ([ClientId]) REFERENCES [Clients] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ClientIdPRestrictions] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Provider] nvarchar(200) NOT NULL, | |
| [ClientId] int NOT NULL, | |
| CONSTRAINT [PK_ClientIdPRestrictions] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ClientIdPRestrictions_Clients_ClientId] FOREIGN KEY ([ClientId]) REFERENCES [Clients] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ClientPostLogoutRedirectUris] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [PostLogoutRedirectUri] nvarchar(2000) NOT NULL, | |
| [ClientId] int NOT NULL, | |
| CONSTRAINT [PK_ClientPostLogoutRedirectUris] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ClientPostLogoutRedirectUris_Clients_ClientId] FOREIGN KEY ([ClientId]) REFERENCES [Clients] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ClientProperties] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Key] nvarchar(250) NOT NULL, | |
| [Value] nvarchar(2000) NOT NULL, | |
| [ClientId] int NOT NULL, | |
| CONSTRAINT [PK_ClientProperties] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ClientProperties_Clients_ClientId] FOREIGN KEY ([ClientId]) REFERENCES [Clients] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ClientRedirectUris] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [RedirectUri] nvarchar(2000) NOT NULL, | |
| [ClientId] int NOT NULL, | |
| CONSTRAINT [PK_ClientRedirectUris] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ClientRedirectUris_Clients_ClientId] FOREIGN KEY ([ClientId]) REFERENCES [Clients] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ClientScopes] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Scope] nvarchar(200) NOT NULL, | |
| [ClientId] int NOT NULL, | |
| CONSTRAINT [PK_ClientScopes] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ClientScopes_Clients_ClientId] FOREIGN KEY ([ClientId]) REFERENCES [Clients] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ClientSecrets] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Description] nvarchar(2000) NULL, | |
| [Value] nvarchar(4000) NOT NULL, | |
| [Expiration] datetime2 NULL, | |
| [Type] nvarchar(250) NOT NULL, | |
| [Created] datetime2 NOT NULL, | |
| [ClientId] int NOT NULL, | |
| CONSTRAINT [PK_ClientSecrets] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ClientSecrets_Clients_ClientId] FOREIGN KEY ([ClientId]) REFERENCES [Clients] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [IdentityClaims] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Type] nvarchar(200) NOT NULL, | |
| [IdentityResourceId] int NOT NULL, | |
| CONSTRAINT [PK_IdentityClaims] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_IdentityClaims_IdentityResources_IdentityResourceId] FOREIGN KEY ([IdentityResourceId]) REFERENCES [IdentityResources] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [IdentityProperties] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Key] nvarchar(250) NOT NULL, | |
| [Value] nvarchar(2000) NOT NULL, | |
| [IdentityResourceId] int NOT NULL, | |
| CONSTRAINT [PK_IdentityProperties] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_IdentityProperties_IdentityResources_IdentityResourceId] FOREIGN KEY ([IdentityResourceId]) REFERENCES [IdentityResources] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE TABLE [ApiScopeClaims] ( | |
| [Id] int NOT NULL IDENTITY, | |
| [Type] nvarchar(200) NOT NULL, | |
| [ApiScopeId] int NOT NULL, | |
| CONSTRAINT [PK_ApiScopeClaims] PRIMARY KEY ([Id]), | |
| CONSTRAINT [FK_ApiScopeClaims_ApiScopes_ApiScopeId] FOREIGN KEY ([ApiScopeId]) REFERENCES [ApiScopes] ([Id]) ON DELETE CASCADE | |
| ); | |
| GO | |
| CREATE INDEX [IX_ApiClaims_ApiResourceId] ON [ApiClaims] ([ApiResourceId]); | |
| GO | |
| CREATE INDEX [IX_ApiProperties_ApiResourceId] ON [ApiProperties] ([ApiResourceId]); | |
| GO | |
| CREATE UNIQUE INDEX [IX_ApiResources_Name] ON [ApiResources] ([Name]); | |
| GO | |
| CREATE INDEX [IX_ApiScopeClaims_ApiScopeId] ON [ApiScopeClaims] ([ApiScopeId]); | |
| GO | |
| CREATE INDEX [IX_ApiScopes_ApiResourceId] ON [ApiScopes] ([ApiResourceId]); | |
| GO | |
| CREATE UNIQUE INDEX [IX_ApiScopes_Name] ON [ApiScopes] ([Name]); | |
| GO | |
| CREATE INDEX [IX_ApiSecrets_ApiResourceId] ON [ApiSecrets] ([ApiResourceId]); | |
| GO | |
| CREATE INDEX [IX_ClientClaims_ClientId] ON [ClientClaims] ([ClientId]); | |
| GO | |
| CREATE INDEX [IX_ClientCorsOrigins_ClientId] ON [ClientCorsOrigins] ([ClientId]); | |
| GO | |
| CREATE INDEX [IX_ClientGrantTypes_ClientId] ON [ClientGrantTypes] ([ClientId]); | |
| GO | |
| CREATE INDEX [IX_ClientIdPRestrictions_ClientId] ON [ClientIdPRestrictions] ([ClientId]); | |
| GO | |
| CREATE INDEX [IX_ClientPostLogoutRedirectUris_ClientId] ON [ClientPostLogoutRedirectUris] ([ClientId]); | |
| GO | |
| CREATE INDEX [IX_ClientProperties_ClientId] ON [ClientProperties] ([ClientId]); | |
| GO | |
| CREATE INDEX [IX_ClientRedirectUris_ClientId] ON [ClientRedirectUris] ([ClientId]); | |
| GO | |
| CREATE UNIQUE INDEX [IX_Clients_ClientId] ON [Clients] ([ClientId]); | |
| GO | |
| CREATE INDEX [IX_ClientScopes_ClientId] ON [ClientScopes] ([ClientId]); | |
| GO | |
| CREATE INDEX [IX_ClientSecrets_ClientId] ON [ClientSecrets] ([ClientId]); | |
| GO | |
| CREATE INDEX [IX_IdentityClaims_IdentityResourceId] ON [IdentityClaims] ([IdentityResourceId]); | |
| GO | |
| CREATE INDEX [IX_IdentityProperties_IdentityResourceId] ON [IdentityProperties] ([IdentityResourceId]); | |
| GO | |
| CREATE UNIQUE INDEX [IX_IdentityResources_Name] ON [IdentityResources] ([Name]); | |
| GO | |
| INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion]) | |
| VALUES (N'20191227171318_Config', N'3.1.0'); | |
| GO | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // <auto-generated /> | |
| using System; | |
| using IdentityServer4.EntityFramework.DbContexts; | |
| using Microsoft.EntityFrameworkCore; | |
| using Microsoft.EntityFrameworkCore.Infrastructure; | |
| using Microsoft.EntityFrameworkCore.Metadata; | |
| using Microsoft.EntityFrameworkCore.Storage.ValueConversion; | |
| namespace SqlServer.Migrations.ConfigurationDb | |
| { | |
| [DbContext(typeof(ConfigurationDbContext))] | |
| partial class ConfigurationDbContextModelSnapshot : ModelSnapshot | |
| { | |
| protected override void BuildModel(ModelBuilder modelBuilder) | |
| { | |
| #pragma warning disable 612, 618 | |
| modelBuilder | |
| .HasAnnotation("ProductVersion", "3.1.0") | |
| .HasAnnotation("Relational:MaxIdentifierLength", 128) | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResource", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<string>("AllowedAccessTokenSigningAlgorithms") | |
| .HasColumnType("nvarchar(100)") | |
| .HasMaxLength(100); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(1000); | |
| b.Property<string>("DisplayName") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("Enabled") | |
| .HasColumnType("bit"); | |
| b.Property<DateTime?>("LastAccessed") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Name") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("NonEditable") | |
| .HasColumnType("bit"); | |
| b.Property<DateTime?>("Updated") | |
| .HasColumnType("datetime2"); | |
| b.HasKey("Id"); | |
| b.HasIndex("Name") | |
| .IsUnique(); | |
| b.ToTable("ApiResources"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceClaim", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiResourceId"); | |
| b.ToTable("ApiClaims"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceProperty", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Key") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiResourceId"); | |
| b.ToTable("ApiProperties"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScope", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(1000); | |
| b.Property<string>("DisplayName") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("Emphasize") | |
| .HasColumnType("bit"); | |
| b.Property<string>("Name") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("Required") | |
| .HasColumnType("bit"); | |
| b.Property<bool>("ShowInDiscoveryDocument") | |
| .HasColumnType("bit"); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiResourceId"); | |
| b.HasIndex("Name") | |
| .IsUnique(); | |
| b.ToTable("ApiScopes"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScopeClaim", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiScopeId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiScopeId"); | |
| b.ToTable("ApiScopeClaims"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiSecret", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ApiResourceId") | |
| .HasColumnType("int"); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(1000); | |
| b.Property<DateTime?>("Expiration") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(4000)") | |
| .HasMaxLength(4000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ApiResourceId"); | |
| b.ToTable("ApiSecrets"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.Client", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| 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") | |
| .HasColumnType("nvarchar(100)") | |
| .HasMaxLength(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") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<string>("ClientClaimsPrefix") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<string>("ClientId") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<string>("ClientName") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<string>("ClientUri") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<int?>("ConsentLifetime") | |
| .HasColumnType("int"); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(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") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<int>("IdentityTokenLifetime") | |
| .HasColumnType("int"); | |
| b.Property<bool>("IncludeJwtId") | |
| .HasColumnType("bit"); | |
| b.Property<DateTime?>("LastAccessed") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("LogoUri") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<bool>("NonEditable") | |
| .HasColumnType("bit"); | |
| b.Property<string>("PairWiseSubjectSalt") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<string>("ProtocolType") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(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>("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") | |
| .HasColumnType("nvarchar(100)") | |
| .HasMaxLength(100); | |
| b.Property<int?>("UserSsoLifetime") | |
| .HasColumnType("int"); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId") | |
| .IsUnique(); | |
| b.ToTable("Clients"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientClaim", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientClaims"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientCorsOrigin", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Origin") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(150)") | |
| .HasMaxLength(150); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientCorsOrigins"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientGrantType", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("GrantType") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientGrantTypes"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientIdPRestriction", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Provider") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientIdPRestrictions"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientPostLogoutRedirectUri", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("PostLogoutRedirectUri") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientPostLogoutRedirectUris"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientProperty", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Key") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientProperties"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientRedirectUri", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("RedirectUri") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientRedirectUris"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientScope", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Scope") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientScopes"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientSecret", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("ClientId") | |
| .HasColumnType("int"); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.Property<DateTime?>("Expiration") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(4000)") | |
| .HasMaxLength(4000); | |
| b.HasKey("Id"); | |
| b.HasIndex("ClientId"); | |
| b.ToTable("ClientSecrets"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityClaim", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("IdentityResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Type") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.HasKey("Id"); | |
| b.HasIndex("IdentityResourceId"); | |
| b.ToTable("IdentityClaims"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityResource", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<DateTime>("Created") | |
| .HasColumnType("datetime2"); | |
| b.Property<string>("Description") | |
| .HasColumnType("nvarchar(1000)") | |
| .HasMaxLength(1000); | |
| b.Property<string>("DisplayName") | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(200); | |
| b.Property<bool>("Emphasize") | |
| .HasColumnType("bit"); | |
| b.Property<bool>("Enabled") | |
| .HasColumnType("bit"); | |
| b.Property<string>("Name") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(200)") | |
| .HasMaxLength(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"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityResourceProperty", b => | |
| { | |
| b.Property<int>("Id") | |
| .ValueGeneratedOnAdd() | |
| .HasColumnType("int") | |
| .HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn); | |
| b.Property<int>("IdentityResourceId") | |
| .HasColumnType("int"); | |
| b.Property<string>("Key") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(250)") | |
| .HasMaxLength(250); | |
| b.Property<string>("Value") | |
| .IsRequired() | |
| .HasColumnType("nvarchar(2000)") | |
| .HasMaxLength(2000); | |
| b.HasKey("Id"); | |
| b.HasIndex("IdentityResourceId"); | |
| b.ToTable("IdentityProperties"); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceClaim", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource") | |
| .WithMany("UserClaims") | |
| .HasForeignKey("ApiResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiResourceProperty", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource") | |
| .WithMany("Properties") | |
| .HasForeignKey("ApiResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScope", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource") | |
| .WithMany("Scopes") | |
| .HasForeignKey("ApiResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiScopeClaim", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiScope", "ApiScope") | |
| .WithMany("UserClaims") | |
| .HasForeignKey("ApiScopeId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ApiSecret", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.ApiResource", "ApiResource") | |
| .WithMany("Secrets") | |
| .HasForeignKey("ApiResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientClaim", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("Claims") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientCorsOrigin", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("AllowedCorsOrigins") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientGrantType", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("AllowedGrantTypes") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientIdPRestriction", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("IdentityProviderRestrictions") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientPostLogoutRedirectUri", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("PostLogoutRedirectUris") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientProperty", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("Properties") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientRedirectUri", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("RedirectUris") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientScope", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("AllowedScopes") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.ClientSecret", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.Client", "Client") | |
| .WithMany("ClientSecrets") | |
| .HasForeignKey("ClientId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityClaim", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.IdentityResource", "IdentityResource") | |
| .WithMany("UserClaims") | |
| .HasForeignKey("IdentityResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| modelBuilder.Entity("IdentityServer4.EntityFramework.Entities.IdentityResourceProperty", b => | |
| { | |
| b.HasOne("IdentityServer4.EntityFramework.Entities.IdentityResource", "IdentityResource") | |
| .WithMany("Properties") | |
| .HasForeignKey("IdentityResourceId") | |
| .OnDelete(DeleteBehavior.Cascade) | |
| .IsRequired(); | |
| }); | |
| #pragma warning restore 612, 618 | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment