添加OAuth2认证相关配置文件和服务实现,包括环境变量配置、PKCE流程支持、token管理等功能。主要变更: - 新增OAuth2配置文件 - 实现OAuth2服务层 - 更新请求拦截器支持token自动刷新 - 修改认证API和store以支持OAuth2流程
568 lines
30 KiB
C#
568 lines
30 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace Fengling.AuthService.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class inital : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "AccessLogs",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
UserName = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
TenantId = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
Action = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
Resource = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true),
|
|
Method = table.Column<string>(type: "character varying(10)", maxLength: 10, nullable: true),
|
|
IpAddress = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
UserAgent = table.Column<string>(type: "character varying(500)", maxLength: 500, nullable: true),
|
|
Status = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
Duration = table.Column<int>(type: "integer", nullable: false),
|
|
RequestData = table.Column<string>(type: "text", nullable: true),
|
|
ResponseData = table.Column<string>(type: "text", nullable: true),
|
|
ErrorMessage = table.Column<string>(type: "text", nullable: true),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AccessLogs", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AspNetRoles",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
Description = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true),
|
|
CreatedTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
TenantId = table.Column<long>(type: "bigint", nullable: true),
|
|
IsSystem = table.Column<bool>(type: "boolean", nullable: false),
|
|
DisplayName = table.Column<string>(type: "text", nullable: true),
|
|
Permissions = table.Column<List<string>>(type: "text[]", nullable: true),
|
|
Name = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
NormalizedName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
ConcurrencyStamp = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AspNetRoles", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AspNetUsers",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
RealName = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true),
|
|
Phone = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: true),
|
|
TenantId = table.Column<long>(type: "bigint", nullable: false),
|
|
TenantCode = table.Column<string>(type: "text", nullable: false),
|
|
TenantName = table.Column<string>(type: "text", nullable: false),
|
|
CreatedTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
UpdatedTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
IsDeleted = table.Column<bool>(type: "boolean", nullable: false),
|
|
UserName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
NormalizedUserName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
Email = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
NormalizedEmail = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
EmailConfirmed = table.Column<bool>(type: "boolean", nullable: false),
|
|
PasswordHash = table.Column<string>(type: "text", nullable: true),
|
|
SecurityStamp = table.Column<string>(type: "text", nullable: true),
|
|
ConcurrencyStamp = table.Column<string>(type: "text", nullable: true),
|
|
PhoneNumber = table.Column<string>(type: "text", nullable: true),
|
|
PhoneNumberConfirmed = table.Column<bool>(type: "boolean", nullable: false),
|
|
TwoFactorEnabled = table.Column<bool>(type: "boolean", nullable: false),
|
|
LockoutEnd = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true),
|
|
LockoutEnabled = table.Column<bool>(type: "boolean", nullable: false),
|
|
AccessFailedCount = table.Column<int>(type: "integer", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AspNetUsers", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AuditLogs",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
Operator = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: false),
|
|
TenantId = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
Operation = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
Action = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
TargetType = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
TargetId = table.Column<long>(type: "bigint", nullable: true),
|
|
TargetName = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true),
|
|
IpAddress = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: false),
|
|
Description = table.Column<string>(type: "character varying(500)", maxLength: 500, nullable: true),
|
|
OldValue = table.Column<string>(type: "text", nullable: true),
|
|
NewValue = table.Column<string>(type: "text", nullable: true),
|
|
ErrorMessage = table.Column<string>(type: "text", nullable: true),
|
|
Status = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AuditLogs", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "OAuthApplications",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
ClientId = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
|
ClientSecret = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true),
|
|
DisplayName = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
|
RedirectUris = table.Column<string[]>(type: "text[]", nullable: false),
|
|
PostLogoutRedirectUris = table.Column<string[]>(type: "text[]", nullable: false),
|
|
Scopes = table.Column<string[]>(type: "text[]", nullable: false),
|
|
GrantTypes = table.Column<string[]>(type: "text[]", nullable: false),
|
|
ClientType = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
ConsentType = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
Status = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
Description = table.Column<string>(type: "character varying(500)", maxLength: 500, nullable: true),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
UpdatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OAuthApplications", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "OpenIddictApplications",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<string>(type: "text", nullable: false),
|
|
ApplicationType = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
ClientId = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true),
|
|
ClientSecret = table.Column<string>(type: "text", nullable: true),
|
|
ClientType = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
ConcurrencyToken = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
ConsentType = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
DisplayName = table.Column<string>(type: "text", nullable: true),
|
|
DisplayNames = table.Column<string>(type: "text", nullable: true),
|
|
JsonWebKeySet = table.Column<string>(type: "text", nullable: true),
|
|
Permissions = table.Column<string>(type: "text", nullable: true),
|
|
PostLogoutRedirectUris = table.Column<string>(type: "text", nullable: true),
|
|
Properties = table.Column<string>(type: "text", nullable: true),
|
|
RedirectUris = table.Column<string>(type: "text", nullable: true),
|
|
Requirements = table.Column<string>(type: "text", nullable: true),
|
|
Settings = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OpenIddictApplications", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "OpenIddictScopes",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<string>(type: "text", nullable: false),
|
|
ConcurrencyToken = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
Description = table.Column<string>(type: "text", nullable: true),
|
|
Descriptions = table.Column<string>(type: "text", nullable: true),
|
|
DisplayName = table.Column<string>(type: "text", nullable: true),
|
|
DisplayNames = table.Column<string>(type: "text", nullable: true),
|
|
Name = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true),
|
|
Properties = table.Column<string>(type: "text", nullable: true),
|
|
Resources = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OpenIddictScopes", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Tenants",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
TenantId = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: false),
|
|
Name = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
|
ContactName = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: false),
|
|
ContactEmail = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
|
ContactPhone = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: true),
|
|
MaxUsers = table.Column<int>(type: "integer", nullable: true),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
Description = table.Column<string>(type: "character varying(500)", maxLength: 500, nullable: true),
|
|
Status = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
ExpiresAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
UpdatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
IsDeleted = table.Column<bool>(type: "boolean", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Tenants", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AspNetRoleClaims",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
RoleId = table.Column<long>(type: "bigint", nullable: false),
|
|
ClaimType = table.Column<string>(type: "text", nullable: true),
|
|
ClaimValue = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AspNetRoleClaims", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_AspNetRoleClaims_AspNetRoles_RoleId",
|
|
column: x => x.RoleId,
|
|
principalTable: "AspNetRoles",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AspNetUserClaims",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
UserId = table.Column<long>(type: "bigint", nullable: false),
|
|
ClaimType = table.Column<string>(type: "text", nullable: true),
|
|
ClaimValue = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AspNetUserClaims", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_AspNetUserClaims_AspNetUsers_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "AspNetUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AspNetUserLogins",
|
|
columns: table => new
|
|
{
|
|
LoginProvider = table.Column<string>(type: "text", nullable: false),
|
|
ProviderKey = table.Column<string>(type: "text", nullable: false),
|
|
ProviderDisplayName = table.Column<string>(type: "text", nullable: true),
|
|
UserId = table.Column<long>(type: "bigint", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AspNetUserLogins", x => new { x.LoginProvider, x.ProviderKey });
|
|
table.ForeignKey(
|
|
name: "FK_AspNetUserLogins_AspNetUsers_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "AspNetUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AspNetUserRoles",
|
|
columns: table => new
|
|
{
|
|
UserId = table.Column<long>(type: "bigint", nullable: false),
|
|
RoleId = table.Column<long>(type: "bigint", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AspNetUserRoles", x => new { x.UserId, x.RoleId });
|
|
table.ForeignKey(
|
|
name: "FK_AspNetUserRoles_AspNetRoles_RoleId",
|
|
column: x => x.RoleId,
|
|
principalTable: "AspNetRoles",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_AspNetUserRoles_AspNetUsers_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "AspNetUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "AspNetUserTokens",
|
|
columns: table => new
|
|
{
|
|
UserId = table.Column<long>(type: "bigint", nullable: false),
|
|
LoginProvider = table.Column<string>(type: "text", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Value = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_AspNetUserTokens", x => new { x.UserId, x.LoginProvider, x.Name });
|
|
table.ForeignKey(
|
|
name: "FK_AspNetUserTokens_AspNetUsers_UserId",
|
|
column: x => x.UserId,
|
|
principalTable: "AspNetUsers",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "OpenIddictAuthorizations",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<string>(type: "text", nullable: false),
|
|
ApplicationId = table.Column<string>(type: "text", nullable: true),
|
|
ConcurrencyToken = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
Properties = table.Column<string>(type: "text", nullable: true),
|
|
Scopes = table.Column<string>(type: "text", nullable: true),
|
|
Status = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
Subject = table.Column<string>(type: "character varying(400)", maxLength: 400, nullable: true),
|
|
Type = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OpenIddictAuthorizations", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_OpenIddictAuthorizations_OpenIddictApplications_Application~",
|
|
column: x => x.ApplicationId,
|
|
principalTable: "OpenIddictApplications",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "OpenIddictTokens",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<string>(type: "text", nullable: false),
|
|
ApplicationId = table.Column<string>(type: "text", nullable: true),
|
|
AuthorizationId = table.Column<string>(type: "text", nullable: true),
|
|
ConcurrencyToken = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
CreationDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
ExpirationDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
Payload = table.Column<string>(type: "text", nullable: true),
|
|
Properties = table.Column<string>(type: "text", nullable: true),
|
|
RedemptionDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
ReferenceId = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true),
|
|
Status = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: true),
|
|
Subject = table.Column<string>(type: "character varying(400)", maxLength: 400, nullable: true),
|
|
Type = table.Column<string>(type: "character varying(150)", maxLength: 150, 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_AccessLogs_Action",
|
|
table: "AccessLogs",
|
|
column: "Action");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AccessLogs_CreatedAt",
|
|
table: "AccessLogs",
|
|
column: "CreatedAt");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AccessLogs_Status",
|
|
table: "AccessLogs",
|
|
column: "Status");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AccessLogs_TenantId",
|
|
table: "AccessLogs",
|
|
column: "TenantId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AccessLogs_UserName",
|
|
table: "AccessLogs",
|
|
column: "UserName");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AspNetRoleClaims_RoleId",
|
|
table: "AspNetRoleClaims",
|
|
column: "RoleId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "RoleNameIndex",
|
|
table: "AspNetRoles",
|
|
column: "NormalizedName",
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AspNetUserClaims_UserId",
|
|
table: "AspNetUserClaims",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AspNetUserLogins_UserId",
|
|
table: "AspNetUserLogins",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AspNetUserRoles_RoleId",
|
|
table: "AspNetUserRoles",
|
|
column: "RoleId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "EmailIndex",
|
|
table: "AspNetUsers",
|
|
column: "NormalizedEmail");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AspNetUsers_Phone",
|
|
table: "AspNetUsers",
|
|
column: "Phone",
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "UserNameIndex",
|
|
table: "AspNetUsers",
|
|
column: "NormalizedUserName",
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AuditLogs_Action",
|
|
table: "AuditLogs",
|
|
column: "Action");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AuditLogs_CreatedAt",
|
|
table: "AuditLogs",
|
|
column: "CreatedAt");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AuditLogs_Operation",
|
|
table: "AuditLogs",
|
|
column: "Operation");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AuditLogs_Operator",
|
|
table: "AuditLogs",
|
|
column: "Operator");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_AuditLogs_TenantId",
|
|
table: "AuditLogs",
|
|
column: "TenantId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OAuthApplications_ClientId",
|
|
table: "OAuthApplications",
|
|
column: "ClientId",
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OpenIddictApplications_ClientId",
|
|
table: "OpenIddictApplications",
|
|
column: "ClientId",
|
|
unique: true);
|
|
|
|
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",
|
|
unique: true);
|
|
|
|
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",
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Tenants_TenantId",
|
|
table: "Tenants",
|
|
column: "TenantId",
|
|
unique: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "AccessLogs");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "AspNetRoleClaims");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "AspNetUserClaims");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "AspNetUserLogins");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "AspNetUserRoles");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "AspNetUserTokens");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "AuditLogs");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "OAuthApplications");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "OpenIddictScopes");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "OpenIddictTokens");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Tenants");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "AspNetRoles");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "AspNetUsers");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "OpenIddictAuthorizations");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "OpenIddictApplications");
|
|
}
|
|
}
|
|
}
|