mirror of https://github.com/abpframework/abp.git
58 changed files with 154 additions and 5023 deletions
@ -1,6 +1,6 @@ |
|||||
{ |
{ |
||||
"version": "1.0.0", |
"version": "1.0.0", |
||||
"name": "my-app-openiddict", |
"name": "my-app-authserver", |
||||
"private": true, |
"private": true, |
||||
"dependencies": { |
"dependencies": { |
||||
"@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.0-rc.1" |
"@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.0-rc.1" |
||||
File diff suppressed because it is too large
File diff suppressed because it is too large
@ -1,623 +0,0 @@ |
|||||
using System; |
|
||||
using Microsoft.EntityFrameworkCore.Migrations; |
|
||||
|
|
||||
#nullable disable |
|
||||
|
|
||||
namespace MyCompanyName.MyProjectName.Migrations |
|
||||
{ |
|
||||
public partial class Removed_IdentityServer : Migration |
|
||||
{ |
|
||||
protected override void Up(MigrationBuilder migrationBuilder) |
|
||||
{ |
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerApiResourceClaims"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerApiResourceProperties"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerApiResourceScopes"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerApiResourceSecrets"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerApiScopeClaims"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerApiScopeProperties"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClientClaims"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClientCorsOrigins"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClientGrantTypes"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClientIdPRestrictions"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClientPostLogoutRedirectUris"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClientProperties"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClientRedirectUris"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClientScopes"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClientSecrets"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerDeviceFlowCodes"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerIdentityResourceClaims"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerIdentityResourceProperties"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerPersistedGrants"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerApiResources"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerApiScopes"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerClients"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "IdentityServerIdentityResources"); |
|
||||
} |
|
||||
|
|
||||
protected override void Down(MigrationBuilder migrationBuilder) |
|
||||
{ |
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerApiResources", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
AllowedAccessTokenSigningAlgorithms = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
||||
DisplayName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
Enabled = table.Column<bool>(type: "bit", nullable: false), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
||||
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
Name = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
||||
ShowInDiscoveryDocument = table.Column<bool>(type: "bit", nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerApiResources", x => x.Id); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerApiScopes", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
||||
DisplayName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
Emphasize = table.Column<bool>(type: "bit", nullable: false), |
|
||||
Enabled = table.Column<bool>(type: "bit", nullable: false), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
||||
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
Name = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
||||
Required = table.Column<bool>(type: "bit", nullable: false), |
|
||||
ShowInDiscoveryDocument = table.Column<bool>(type: "bit", nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerApiScopes", x => x.Id); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClients", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
AbsoluteRefreshTokenLifetime = table.Column<int>(type: "int", nullable: false), |
|
||||
AccessTokenLifetime = table.Column<int>(type: "int", nullable: false), |
|
||||
AccessTokenType = table.Column<int>(type: "int", nullable: false), |
|
||||
AllowAccessTokensViaBrowser = table.Column<bool>(type: "bit", nullable: false), |
|
||||
AllowOfflineAccess = table.Column<bool>(type: "bit", nullable: false), |
|
||||
AllowPlainTextPkce = table.Column<bool>(type: "bit", nullable: false), |
|
||||
AllowRememberConsent = table.Column<bool>(type: "bit", nullable: false), |
|
||||
AllowedIdentityTokenSigningAlgorithms = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
||||
AlwaysIncludeUserClaimsInIdToken = table.Column<bool>(type: "bit", nullable: false), |
|
||||
AlwaysSendClientClaims = table.Column<bool>(type: "bit", nullable: false), |
|
||||
AuthorizationCodeLifetime = table.Column<int>(type: "int", nullable: false), |
|
||||
BackChannelLogoutSessionRequired = table.Column<bool>(type: "bit", nullable: false), |
|
||||
BackChannelLogoutUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
||||
ClientClaimsPrefix = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
ClientId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
||||
ClientName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
ClientUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
ConsentLifetime = table.Column<int>(type: "int", nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
||||
DeviceCodeLifetime = table.Column<int>(type: "int", nullable: false), |
|
||||
EnableLocalLogin = table.Column<bool>(type: "bit", nullable: false), |
|
||||
Enabled = table.Column<bool>(type: "bit", nullable: false), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
FrontChannelLogoutSessionRequired = table.Column<bool>(type: "bit", nullable: false), |
|
||||
FrontChannelLogoutUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
||||
IdentityTokenLifetime = table.Column<int>(type: "int", nullable: false), |
|
||||
IncludeJwtId = table.Column<bool>(type: "bit", nullable: false), |
|
||||
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
||||
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
LogoUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
||||
PairWiseSubjectSalt = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
ProtocolType = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
||||
RefreshTokenExpiration = table.Column<int>(type: "int", nullable: false), |
|
||||
RefreshTokenUsage = table.Column<int>(type: "int", nullable: false), |
|
||||
RequireClientSecret = table.Column<bool>(type: "bit", nullable: false), |
|
||||
RequireConsent = table.Column<bool>(type: "bit", nullable: false), |
|
||||
RequirePkce = table.Column<bool>(type: "bit", nullable: false), |
|
||||
RequireRequestObject = table.Column<bool>(type: "bit", nullable: false), |
|
||||
SlidingRefreshTokenLifetime = table.Column<int>(type: "int", nullable: false), |
|
||||
UpdateAccessTokenClaimsOnRefresh = table.Column<bool>(type: "bit", nullable: false), |
|
||||
UserCodeType = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
||||
UserSsoLifetime = table.Column<int>(type: "int", nullable: true) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClients", x => x.Id); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerDeviceFlowCodes", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
ClientId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
Data = table.Column<string>(type: "nvarchar(max)", maxLength: 50000, nullable: false), |
|
||||
Description = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
DeviceCode = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
||||
Expiration = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
SessionId = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
||||
SubjectId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
UserCode = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerDeviceFlowCodes", x => x.Id); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerIdentityResources", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
||||
DisplayName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
Emphasize = table.Column<bool>(type: "bit", nullable: false), |
|
||||
Enabled = table.Column<bool>(type: "bit", nullable: false), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
||||
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
Name = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
||||
Required = table.Column<bool>(type: "bit", nullable: false), |
|
||||
ShowInDiscoveryDocument = table.Column<bool>(type: "bit", nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerIdentityResources", x => x.Id); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerPersistedGrants", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Key = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
||||
ClientId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
ConsumedTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
Data = table.Column<string>(type: "nvarchar(max)", maxLength: 50000, nullable: false), |
|
||||
Description = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
Expiration = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
SessionId = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
||||
SubjectId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
Type = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerPersistedGrants", x => x.Key); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerApiResourceClaims", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ApiResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Type = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerApiResourceClaims", x => new { x.ApiResourceId, x.Type }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerApiResourceClaims_IdentityServerApiResources_ApiResourceId", |
|
||||
column: x => x.ApiResourceId, |
|
||||
principalTable: "IdentityServerApiResources", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerApiResourceProperties", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ApiResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Key = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false), |
|
||||
Value = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerApiResourceProperties", x => new { x.ApiResourceId, x.Key, x.Value }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerApiResourceProperties_IdentityServerApiResources_ApiResourceId", |
|
||||
column: x => x.ApiResourceId, |
|
||||
principalTable: "IdentityServerApiResources", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerApiResourceScopes", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ApiResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Scope = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerApiResourceScopes", x => new { x.ApiResourceId, x.Scope }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerApiResourceScopes_IdentityServerApiResources_ApiResourceId", |
|
||||
column: x => x.ApiResourceId, |
|
||||
principalTable: "IdentityServerApiResources", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerApiResourceSecrets", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ApiResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Type = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false), |
|
||||
Value = table.Column<string>(type: "nvarchar(4000)", maxLength: 4000, nullable: false), |
|
||||
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
||||
Expiration = table.Column<DateTime>(type: "datetime2", nullable: true) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerApiResourceSecrets", x => new { x.ApiResourceId, x.Type, x.Value }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerApiResourceSecrets_IdentityServerApiResources_ApiResourceId", |
|
||||
column: x => x.ApiResourceId, |
|
||||
principalTable: "IdentityServerApiResources", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerApiScopeClaims", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ApiScopeId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Type = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerApiScopeClaims", x => new { x.ApiScopeId, x.Type }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerApiScopeClaims_IdentityServerApiScopes_ApiScopeId", |
|
||||
column: x => x.ApiScopeId, |
|
||||
principalTable: "IdentityServerApiScopes", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerApiScopeProperties", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ApiScopeId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Key = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false), |
|
||||
Value = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerApiScopeProperties", x => new { x.ApiScopeId, x.Key, x.Value }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerApiScopeProperties_IdentityServerApiScopes_ApiScopeId", |
|
||||
column: x => x.ApiScopeId, |
|
||||
principalTable: "IdentityServerApiScopes", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClientClaims", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Type = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false), |
|
||||
Value = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClientClaims", x => new { x.ClientId, x.Type, x.Value }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerClientClaims_IdentityServerClients_ClientId", |
|
||||
column: x => x.ClientId, |
|
||||
principalTable: "IdentityServerClients", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClientCorsOrigins", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Origin = table.Column<string>(type: "nvarchar(150)", maxLength: 150, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClientCorsOrigins", x => new { x.ClientId, x.Origin }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerClientCorsOrigins_IdentityServerClients_ClientId", |
|
||||
column: x => x.ClientId, |
|
||||
principalTable: "IdentityServerClients", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClientGrantTypes", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
GrantType = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClientGrantTypes", x => new { x.ClientId, x.GrantType }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerClientGrantTypes_IdentityServerClients_ClientId", |
|
||||
column: x => x.ClientId, |
|
||||
principalTable: "IdentityServerClients", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClientIdPRestrictions", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Provider = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClientIdPRestrictions", x => new { x.ClientId, x.Provider }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerClientIdPRestrictions_IdentityServerClients_ClientId", |
|
||||
column: x => x.ClientId, |
|
||||
principalTable: "IdentityServerClients", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClientPostLogoutRedirectUris", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
PostLogoutRedirectUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClientPostLogoutRedirectUris", x => new { x.ClientId, x.PostLogoutRedirectUri }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerClientPostLogoutRedirectUris_IdentityServerClients_ClientId", |
|
||||
column: x => x.ClientId, |
|
||||
principalTable: "IdentityServerClients", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClientProperties", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Key = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false), |
|
||||
Value = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClientProperties", x => new { x.ClientId, x.Key, x.Value }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerClientProperties_IdentityServerClients_ClientId", |
|
||||
column: x => x.ClientId, |
|
||||
principalTable: "IdentityServerClients", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClientRedirectUris", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
RedirectUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClientRedirectUris", x => new { x.ClientId, x.RedirectUri }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerClientRedirectUris_IdentityServerClients_ClientId", |
|
||||
column: x => x.ClientId, |
|
||||
principalTable: "IdentityServerClients", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClientScopes", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Scope = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClientScopes", x => new { x.ClientId, x.Scope }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerClientScopes_IdentityServerClients_ClientId", |
|
||||
column: x => x.ClientId, |
|
||||
principalTable: "IdentityServerClients", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerClientSecrets", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Type = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false), |
|
||||
Value = table.Column<string>(type: "nvarchar(4000)", maxLength: 4000, nullable: false), |
|
||||
Description = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
||||
Expiration = table.Column<DateTime>(type: "datetime2", nullable: true) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerClientSecrets", x => new { x.ClientId, x.Type, x.Value }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerClientSecrets_IdentityServerClients_ClientId", |
|
||||
column: x => x.ClientId, |
|
||||
principalTable: "IdentityServerClients", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerIdentityResourceClaims", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
IdentityResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Type = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerIdentityResourceClaims", x => new { x.IdentityResourceId, x.Type }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerIdentityResourceClaims_IdentityServerIdentityResources_IdentityResourceId", |
|
||||
column: x => x.IdentityResourceId, |
|
||||
principalTable: "IdentityServerIdentityResources", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "IdentityServerIdentityResourceProperties", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
IdentityResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Key = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false), |
|
||||
Value = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: false) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_IdentityServerIdentityResourceProperties", x => new { x.IdentityResourceId, x.Key, x.Value }); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_IdentityServerIdentityResourceProperties_IdentityServerIdentityResources_IdentityResourceId", |
|
||||
column: x => x.IdentityResourceId, |
|
||||
principalTable: "IdentityServerIdentityResources", |
|
||||
principalColumn: "Id", |
|
||||
onDelete: ReferentialAction.Cascade); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_IdentityServerClients_ClientId", |
|
||||
table: "IdentityServerClients", |
|
||||
column: "ClientId"); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_IdentityServerDeviceFlowCodes_DeviceCode", |
|
||||
table: "IdentityServerDeviceFlowCodes", |
|
||||
column: "DeviceCode", |
|
||||
unique: true); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_IdentityServerDeviceFlowCodes_Expiration", |
|
||||
table: "IdentityServerDeviceFlowCodes", |
|
||||
column: "Expiration"); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_IdentityServerDeviceFlowCodes_UserCode", |
|
||||
table: "IdentityServerDeviceFlowCodes", |
|
||||
column: "UserCode"); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_IdentityServerPersistedGrants_Expiration", |
|
||||
table: "IdentityServerPersistedGrants", |
|
||||
column: "Expiration"); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_IdentityServerPersistedGrants_SubjectId_ClientId_Type", |
|
||||
table: "IdentityServerPersistedGrants", |
|
||||
columns: new[] { "SubjectId", "ClientId", "Type" }); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_IdentityServerPersistedGrants_SubjectId_SessionId_Type", |
|
||||
table: "IdentityServerPersistedGrants", |
|
||||
columns: new[] { "SubjectId", "SessionId", "Type" }); |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
@ -1,189 +0,0 @@ |
|||||
using System; |
|
||||
using Microsoft.EntityFrameworkCore.Migrations; |
|
||||
|
|
||||
#nullable disable |
|
||||
|
|
||||
namespace MyCompanyName.MyProjectName.Migrations |
|
||||
{ |
|
||||
public partial class Installed_OpenIddict_Module : Migration |
|
||||
{ |
|
||||
protected override void Up(MigrationBuilder migrationBuilder) |
|
||||
{ |
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "OpenIddictApplications", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
ClientId = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
||||
ClientSecret = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
ConsentType = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|
||||
DisplayName = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
DisplayNames = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Permissions = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
PostLogoutRedirectUris = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Properties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
RedirectUris = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Requirements = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Type = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
||||
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_OpenIddictApplications", x => x.Id); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "OpenIddictScopes", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
Description = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Descriptions = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
DisplayName = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
DisplayNames = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Name = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
||||
Properties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Resources = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
||||
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_OpenIddictScopes", x => x.Id); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "OpenIddictAuthorizations", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
ApplicationId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
CreationDate = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
Properties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Scopes = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Status = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|
||||
Subject = table.Column<string>(type: "nvarchar(400)", maxLength: 400, nullable: true), |
|
||||
Type = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
||||
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_OpenIddictAuthorizations", x => x.Id); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_OpenIddictAuthorizations_OpenIddictApplications_ApplicationId", |
|
||||
column: x => x.ApplicationId, |
|
||||
principalTable: "OpenIddictApplications", |
|
||||
principalColumn: "Id"); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateTable( |
|
||||
name: "OpenIddictTokens", |
|
||||
columns: table => new |
|
||||
{ |
|
||||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
||||
ApplicationId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
AuthorizationId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
CreationDate = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
ExpirationDate = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
Payload = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
Properties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
RedemptionDate = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
ReferenceId = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
||||
Status = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|
||||
Subject = table.Column<string>(type: "nvarchar(400)", maxLength: 400, nullable: true), |
|
||||
Type = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true), |
|
||||
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
||||
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true), |
|
||||
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
||||
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
||||
LastModifierId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
IsDeleted = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
||||
DeleterId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
||||
DeletionTime = table.Column<DateTime>(type: "datetime2", nullable: true) |
|
||||
}, |
|
||||
constraints: table => |
|
||||
{ |
|
||||
table.PrimaryKey("PK_OpenIddictTokens", x => x.Id); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_OpenIddictTokens_OpenIddictApplications_ApplicationId", |
|
||||
column: x => x.ApplicationId, |
|
||||
principalTable: "OpenIddictApplications", |
|
||||
principalColumn: "Id"); |
|
||||
table.ForeignKey( |
|
||||
name: "FK_OpenIddictTokens_OpenIddictAuthorizations_AuthorizationId", |
|
||||
column: x => x.AuthorizationId, |
|
||||
principalTable: "OpenIddictAuthorizations", |
|
||||
principalColumn: "Id"); |
|
||||
}); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_OpenIddictApplications_ClientId", |
|
||||
table: "OpenIddictApplications", |
|
||||
column: "ClientId"); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_OpenIddictAuthorizations_ApplicationId_Status_Subject_Type", |
|
||||
table: "OpenIddictAuthorizations", |
|
||||
columns: new[] { "ApplicationId", "Status", "Subject", "Type" }); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_OpenIddictScopes_Name", |
|
||||
table: "OpenIddictScopes", |
|
||||
column: "Name"); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_OpenIddictTokens_ApplicationId_Status_Subject_Type", |
|
||||
table: "OpenIddictTokens", |
|
||||
columns: new[] { "ApplicationId", "Status", "Subject", "Type" }); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_OpenIddictTokens_AuthorizationId", |
|
||||
table: "OpenIddictTokens", |
|
||||
column: "AuthorizationId"); |
|
||||
|
|
||||
migrationBuilder.CreateIndex( |
|
||||
name: "IX_OpenIddictTokens_ReferenceId", |
|
||||
table: "OpenIddictTokens", |
|
||||
column: "ReferenceId"); |
|
||||
} |
|
||||
|
|
||||
protected override void Down(MigrationBuilder migrationBuilder) |
|
||||
{ |
|
||||
migrationBuilder.DropTable( |
|
||||
name: "OpenIddictScopes"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "OpenIddictTokens"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "OpenIddictAuthorizations"); |
|
||||
|
|
||||
migrationBuilder.DropTable( |
|
||||
name: "OpenIddictApplications"); |
|
||||
} |
|
||||
} |
|
||||
} |
|
||||
@ -1,6 +1,6 @@ |
|||||
{ |
{ |
||||
"version": "1.0.0", |
"version": "1.0.0", |
||||
"name": "my-app-identityserver", |
"name": "my-app-authserver", |
||||
"private": true, |
"private": true, |
||||
"dependencies": { |
"dependencies": { |
||||
"@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.0-rc.1" |
"@abp/aspnetcore.mvc.ui.theme.basic": "^5.3.0-rc.1" |
||||
Loading…
Reference in new issue