using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ZeroFramework.IdentityServer.API.Migrations.ConfigurationMigrations { /// public partial class InitialCreate : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "ApiResources", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Enabled = table.Column(type: "bit", nullable: false), Name = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false), DisplayName = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), Description = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: true), AllowedAccessTokenSigningAlgorithms = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: true), ShowInDiscoveryDocument = table.Column(type: "bit", nullable: false), RequireResourceIndicator = table.Column(type: "bit", nullable: false), Created = table.Column(type: "datetime2", nullable: false), Updated = table.Column(type: "datetime2", nullable: true), LastAccessed = table.Column(type: "datetime2", nullable: true), NonEditable = table.Column(type: "bit", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ApiResources", x => x.Id); }); migrationBuilder.CreateTable( name: "ApiScopes", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Enabled = table.Column(type: "bit", nullable: false), Name = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false), DisplayName = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), Description = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: true), Required = table.Column(type: "bit", nullable: false), Emphasize = table.Column(type: "bit", nullable: false), ShowInDiscoveryDocument = table.Column(type: "bit", nullable: false), Created = table.Column(type: "datetime2", nullable: false), Updated = table.Column(type: "datetime2", nullable: true), LastAccessed = table.Column(type: "datetime2", nullable: true), NonEditable = table.Column(type: "bit", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ApiScopes", x => x.Id); }); migrationBuilder.CreateTable( name: "Clients", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Enabled = table.Column(type: "bit", nullable: false), ClientId = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false), ProtocolType = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false), RequireClientSecret = table.Column(type: "bit", nullable: false), ClientName = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), Description = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: true), ClientUri = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: true), LogoUri = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: true), RequireConsent = table.Column(type: "bit", nullable: false), AllowRememberConsent = table.Column(type: "bit", nullable: false), AlwaysIncludeUserClaimsInIdToken = table.Column(type: "bit", nullable: false), RequirePkce = table.Column(type: "bit", nullable: false), AllowPlainTextPkce = table.Column(type: "bit", nullable: false), RequireRequestObject = table.Column(type: "bit", nullable: false), AllowAccessTokensViaBrowser = table.Column(type: "bit", nullable: false), RequireDPoP = table.Column(type: "bit", nullable: false), DPoPValidationMode = table.Column(type: "int", nullable: false), DPoPClockSkew = table.Column(type: "time", nullable: false), FrontChannelLogoutUri = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: true), FrontChannelLogoutSessionRequired = table.Column(type: "bit", nullable: false), BackChannelLogoutUri = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: true), BackChannelLogoutSessionRequired = table.Column(type: "bit", nullable: false), AllowOfflineAccess = table.Column(type: "bit", nullable: false), IdentityTokenLifetime = table.Column(type: "int", nullable: false), AllowedIdentityTokenSigningAlgorithms = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: true), AccessTokenLifetime = table.Column(type: "int", nullable: false), AuthorizationCodeLifetime = table.Column(type: "int", nullable: false), ConsentLifetime = table.Column(type: "int", nullable: true), AbsoluteRefreshTokenLifetime = table.Column(type: "int", nullable: false), SlidingRefreshTokenLifetime = table.Column(type: "int", nullable: false), RefreshTokenUsage = table.Column(type: "int", nullable: false), UpdateAccessTokenClaimsOnRefresh = table.Column(type: "bit", nullable: false), RefreshTokenExpiration = table.Column(type: "int", nullable: false), AccessTokenType = table.Column(type: "int", nullable: false), EnableLocalLogin = table.Column(type: "bit", nullable: false), IncludeJwtId = table.Column(type: "bit", nullable: false), AlwaysSendClientClaims = table.Column(type: "bit", nullable: false), ClientClaimsPrefix = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), PairWiseSubjectSalt = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), InitiateLoginUri = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: true), UserSsoLifetime = table.Column(type: "int", nullable: true), UserCodeType = table.Column(type: "nvarchar(100)", maxLength: 100, nullable: true), DeviceCodeLifetime = table.Column(type: "int", nullable: false), CibaLifetime = table.Column(type: "int", nullable: true), PollingInterval = table.Column(type: "int", nullable: true), CoordinateLifetimeWithUserSession = table.Column(type: "bit", nullable: true), Created = table.Column(type: "datetime2", nullable: false), Updated = table.Column(type: "datetime2", nullable: true), LastAccessed = table.Column(type: "datetime2", nullable: true), NonEditable = table.Column(type: "bit", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Clients", x => x.Id); }); migrationBuilder.CreateTable( name: "IdentityProviders", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Scheme = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false), DisplayName = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), Enabled = table.Column(type: "bit", nullable: false), Type = table.Column(type: "nvarchar(20)", maxLength: 20, nullable: false), Properties = table.Column(type: "nvarchar(max)", nullable: true), Created = table.Column(type: "datetime2", nullable: false), Updated = table.Column(type: "datetime2", nullable: true), LastAccessed = table.Column(type: "datetime2", nullable: true), NonEditable = table.Column(type: "bit", nullable: false) }, constraints: table => { table.PrimaryKey("PK_IdentityProviders", x => x.Id); }); migrationBuilder.CreateTable( name: "IdentityResources", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Enabled = table.Column(type: "bit", nullable: false), Name = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false), DisplayName = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: true), Description = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: true), Required = table.Column(type: "bit", nullable: false), Emphasize = table.Column(type: "bit", nullable: false), ShowInDiscoveryDocument = table.Column(type: "bit", nullable: false), Created = table.Column(type: "datetime2", nullable: false), Updated = table.Column(type: "datetime2", nullable: true), NonEditable = table.Column(type: "bit", nullable: false) }, constraints: table => { table.PrimaryKey("PK_IdentityResources", x => x.Id); }); migrationBuilder.CreateTable( name: "ApiResourceClaims", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ApiResourceId = table.Column(type: "int", nullable: false), Type = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false) }, constraints: table => { table.PrimaryKey("PK_ApiResourceClaims", x => x.Id); table.ForeignKey( name: "FK_ApiResourceClaims_ApiResources_ApiResourceId", column: x => x.ApiResourceId, principalTable: "ApiResources", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ApiResourceProperties", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ApiResourceId = table.Column(type: "int", nullable: false), Key = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false), Value = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: false) }, constraints: table => { table.PrimaryKey("PK_ApiResourceProperties", x => x.Id); table.ForeignKey( name: "FK_ApiResourceProperties_ApiResources_ApiResourceId", column: x => x.ApiResourceId, principalTable: "ApiResources", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ApiResourceScopes", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Scope = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false), ApiResourceId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ApiResourceScopes", x => x.Id); table.ForeignKey( name: "FK_ApiResourceScopes_ApiResources_ApiResourceId", column: x => x.ApiResourceId, principalTable: "ApiResources", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ApiResourceSecrets", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ApiResourceId = table.Column(type: "int", nullable: false), Description = table.Column(type: "nvarchar(1000)", maxLength: 1000, nullable: true), Value = table.Column(type: "nvarchar(4000)", maxLength: 4000, nullable: false), Expiration = table.Column(type: "datetime2", nullable: true), Type = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false), Created = table.Column(type: "datetime2", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ApiResourceSecrets", x => x.Id); table.ForeignKey( name: "FK_ApiResourceSecrets_ApiResources_ApiResourceId", column: x => x.ApiResourceId, principalTable: "ApiResources", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ApiScopeClaims", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ScopeId = table.Column(type: "int", nullable: false), Type = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false) }, constraints: table => { table.PrimaryKey("PK_ApiScopeClaims", x => x.Id); table.ForeignKey( name: "FK_ApiScopeClaims_ApiScopes_ScopeId", column: x => x.ScopeId, principalTable: "ApiScopes", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ApiScopeProperties", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ScopeId = table.Column(type: "int", nullable: false), Key = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false), Value = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: false) }, constraints: table => { table.PrimaryKey("PK_ApiScopeProperties", x => x.Id); table.ForeignKey( name: "FK_ApiScopeProperties_ApiScopes_ScopeId", column: x => x.ScopeId, principalTable: "ApiScopes", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ClientClaims", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Type = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false), Value = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false), ClientId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ClientClaims", x => x.Id); table.ForeignKey( name: "FK_ClientClaims_Clients_ClientId", column: x => x.ClientId, principalTable: "Clients", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ClientCorsOrigins", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Origin = table.Column(type: "nvarchar(150)", maxLength: 150, nullable: false), ClientId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ClientCorsOrigins", x => x.Id); table.ForeignKey( name: "FK_ClientCorsOrigins_Clients_ClientId", column: x => x.ClientId, principalTable: "Clients", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ClientGrantTypes", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), GrantType = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false), ClientId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ClientGrantTypes", x => x.Id); table.ForeignKey( name: "FK_ClientGrantTypes_Clients_ClientId", column: x => x.ClientId, principalTable: "Clients", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ClientIdPRestrictions", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Provider = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false), ClientId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ClientIdPRestrictions", x => x.Id); table.ForeignKey( name: "FK_ClientIdPRestrictions_Clients_ClientId", column: x => x.ClientId, principalTable: "Clients", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ClientPostLogoutRedirectUris", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), PostLogoutRedirectUri = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: false), ClientId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ClientPostLogoutRedirectUris", x => x.Id); table.ForeignKey( name: "FK_ClientPostLogoutRedirectUris_Clients_ClientId", column: x => x.ClientId, principalTable: "Clients", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ClientProperties", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ClientId = table.Column(type: "int", nullable: false), Key = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false), Value = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: false) }, constraints: table => { table.PrimaryKey("PK_ClientProperties", x => x.Id); table.ForeignKey( name: "FK_ClientProperties_Clients_ClientId", column: x => x.ClientId, principalTable: "Clients", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ClientRedirectUris", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), RedirectUri = table.Column(type: "nvarchar(400)", maxLength: 400, nullable: false), ClientId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ClientRedirectUris", x => x.Id); table.ForeignKey( name: "FK_ClientRedirectUris_Clients_ClientId", column: x => x.ClientId, principalTable: "Clients", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ClientScopes", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Scope = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false), ClientId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ClientScopes", x => x.Id); table.ForeignKey( name: "FK_ClientScopes_Clients_ClientId", column: x => x.ClientId, principalTable: "Clients", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ClientSecrets", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ClientId = table.Column(type: "int", nullable: false), Description = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: true), Value = table.Column(type: "nvarchar(4000)", maxLength: 4000, nullable: false), Expiration = table.Column(type: "datetime2", nullable: true), Type = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false), Created = table.Column(type: "datetime2", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ClientSecrets", x => x.Id); table.ForeignKey( name: "FK_ClientSecrets_Clients_ClientId", column: x => x.ClientId, principalTable: "Clients", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "IdentityResourceClaims", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), IdentityResourceId = table.Column(type: "int", nullable: false), Type = table.Column(type: "nvarchar(200)", maxLength: 200, nullable: false) }, constraints: table => { table.PrimaryKey("PK_IdentityResourceClaims", x => x.Id); table.ForeignKey( name: "FK_IdentityResourceClaims_IdentityResources_IdentityResourceId", column: x => x.IdentityResourceId, principalTable: "IdentityResources", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "IdentityResourceProperties", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), IdentityResourceId = table.Column(type: "int", nullable: false), Key = table.Column(type: "nvarchar(250)", maxLength: 250, nullable: false), Value = table.Column(type: "nvarchar(2000)", maxLength: 2000, nullable: false) }, constraints: table => { table.PrimaryKey("PK_IdentityResourceProperties", x => x.Id); table.ForeignKey( name: "FK_IdentityResourceProperties_IdentityResources_IdentityResourceId", column: x => x.IdentityResourceId, principalTable: "IdentityResources", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_ApiResourceClaims_ApiResourceId_Type", table: "ApiResourceClaims", columns: new[] { "ApiResourceId", "Type" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ApiResourceProperties_ApiResourceId_Key", table: "ApiResourceProperties", columns: new[] { "ApiResourceId", "Key" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ApiResources_Name", table: "ApiResources", column: "Name", unique: true); migrationBuilder.CreateIndex( name: "IX_ApiResourceScopes_ApiResourceId_Scope", table: "ApiResourceScopes", columns: new[] { "ApiResourceId", "Scope" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ApiResourceSecrets_ApiResourceId", table: "ApiResourceSecrets", column: "ApiResourceId"); migrationBuilder.CreateIndex( name: "IX_ApiScopeClaims_ScopeId_Type", table: "ApiScopeClaims", columns: new[] { "ScopeId", "Type" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ApiScopeProperties_ScopeId_Key", table: "ApiScopeProperties", columns: new[] { "ScopeId", "Key" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ApiScopes_Name", table: "ApiScopes", column: "Name", unique: true); migrationBuilder.CreateIndex( name: "IX_ClientClaims_ClientId_Type_Value", table: "ClientClaims", columns: new[] { "ClientId", "Type", "Value" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ClientCorsOrigins_ClientId_Origin", table: "ClientCorsOrigins", columns: new[] { "ClientId", "Origin" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ClientGrantTypes_ClientId_GrantType", table: "ClientGrantTypes", columns: new[] { "ClientId", "GrantType" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ClientIdPRestrictions_ClientId_Provider", table: "ClientIdPRestrictions", columns: new[] { "ClientId", "Provider" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ClientPostLogoutRedirectUris_ClientId_PostLogoutRedirectUri", table: "ClientPostLogoutRedirectUris", columns: new[] { "ClientId", "PostLogoutRedirectUri" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ClientProperties_ClientId_Key", table: "ClientProperties", columns: new[] { "ClientId", "Key" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ClientRedirectUris_ClientId_RedirectUri", table: "ClientRedirectUris", columns: new[] { "ClientId", "RedirectUri" }, unique: true); migrationBuilder.CreateIndex( name: "IX_Clients_ClientId", table: "Clients", column: "ClientId", unique: true); migrationBuilder.CreateIndex( name: "IX_ClientScopes_ClientId_Scope", table: "ClientScopes", columns: new[] { "ClientId", "Scope" }, unique: true); migrationBuilder.CreateIndex( name: "IX_ClientSecrets_ClientId", table: "ClientSecrets", column: "ClientId"); migrationBuilder.CreateIndex( name: "IX_IdentityProviders_Scheme", table: "IdentityProviders", column: "Scheme", unique: true); migrationBuilder.CreateIndex( name: "IX_IdentityResourceClaims_IdentityResourceId_Type", table: "IdentityResourceClaims", columns: new[] { "IdentityResourceId", "Type" }, unique: true); migrationBuilder.CreateIndex( name: "IX_IdentityResourceProperties_IdentityResourceId_Key", table: "IdentityResourceProperties", columns: new[] { "IdentityResourceId", "Key" }, unique: true); migrationBuilder.CreateIndex( name: "IX_IdentityResources_Name", table: "IdentityResources", column: "Name", unique: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "ApiResourceClaims"); migrationBuilder.DropTable( name: "ApiResourceProperties"); migrationBuilder.DropTable( name: "ApiResourceScopes"); migrationBuilder.DropTable( name: "ApiResourceSecrets"); migrationBuilder.DropTable( name: "ApiScopeClaims"); migrationBuilder.DropTable( name: "ApiScopeProperties"); migrationBuilder.DropTable( name: "ClientClaims"); migrationBuilder.DropTable( name: "ClientCorsOrigins"); migrationBuilder.DropTable( name: "ClientGrantTypes"); migrationBuilder.DropTable( name: "ClientIdPRestrictions"); migrationBuilder.DropTable( name: "ClientPostLogoutRedirectUris"); migrationBuilder.DropTable( name: "ClientProperties"); migrationBuilder.DropTable( name: "ClientRedirectUris"); migrationBuilder.DropTable( name: "ClientScopes"); migrationBuilder.DropTable( name: "ClientSecrets"); migrationBuilder.DropTable( name: "IdentityProviders"); migrationBuilder.DropTable( name: "IdentityResourceClaims"); migrationBuilder.DropTable( name: "IdentityResourceProperties"); migrationBuilder.DropTable( name: "ApiResources"); migrationBuilder.DropTable( name: "ApiScopes"); migrationBuilder.DropTable( name: "Clients"); migrationBuilder.DropTable( name: "IdentityResources"); } } }