|
|
|
@ -13,16 +13,16 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpClaimTypes", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Name = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
Required = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
IsStatic = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
Regex = table.Column<string>(type: "nvarchar(512)", maxLength: 512, nullable: true), |
|
|
|
RegexDescription = table.Column<string>(type: "nvarchar(128)", maxLength: 128, nullable: true), |
|
|
|
Description = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true), |
|
|
|
ValueType = table.Column<int>(type: "int", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Name = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
Required = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
IsStatic = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
Regex = table.Column<string>(type: "character varying(512)", maxLength: 512, nullable: true), |
|
|
|
RegexDescription = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: true), |
|
|
|
Description = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true), |
|
|
|
ValueType = table.Column<int>(type: "integer", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -33,11 +33,11 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpLinkUsers", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
SourceUserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
SourceTenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
TargetUserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TargetTenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
SourceUserId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
SourceTenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
TargetUserId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TargetTenantId = table.Column<Guid>(type: "uuid", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -48,20 +48,20 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpOrganizationUnits", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
ParentId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
Code = table.Column<string>(type: "nvarchar(95)", maxLength: 95, nullable: false), |
|
|
|
DisplayName = table.Column<string>(type: "nvarchar(128)", maxLength: 128, nullable: false), |
|
|
|
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) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
ParentId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
Code = table.Column<string>(type: "character varying(95)", maxLength: 95, nullable: false), |
|
|
|
DisplayName = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
LastModificationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true), |
|
|
|
LastModifierId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
IsDeleted = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
DeleterId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
DeletionTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -77,15 +77,15 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpRoles", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
Name = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
NormalizedName = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
IsDefault = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
IsStatic = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
IsPublic = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
Name = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
NormalizedName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
IsDefault = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
IsStatic = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
IsPublic = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -96,21 +96,21 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpSecurityLogs", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
ApplicationName = table.Column<string>(type: "nvarchar(96)", maxLength: 96, nullable: true), |
|
|
|
Identity = table.Column<string>(type: "nvarchar(96)", maxLength: 96, nullable: true), |
|
|
|
Action = table.Column<string>(type: "nvarchar(96)", maxLength: 96, nullable: true), |
|
|
|
UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
UserName = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true), |
|
|
|
TenantName = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |
|
|
|
ClientId = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |
|
|
|
CorrelationId = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |
|
|
|
ClientIpAddress = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |
|
|
|
BrowserInfo = table.Column<string>(type: "nvarchar(512)", maxLength: 512, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
ApplicationName = table.Column<string>(type: "character varying(96)", maxLength: 96, nullable: true), |
|
|
|
Identity = table.Column<string>(type: "character varying(96)", maxLength: 96, nullable: true), |
|
|
|
Action = table.Column<string>(type: "character varying(96)", maxLength: 96, nullable: true), |
|
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
UserName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true), |
|
|
|
TenantName = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: true), |
|
|
|
ClientId = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: true), |
|
|
|
CorrelationId = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: true), |
|
|
|
ClientIpAddress = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: true), |
|
|
|
BrowserInfo = table.Column<string>(type: "character varying(512)", maxLength: 512, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -121,34 +121,34 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpUsers", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
UserName = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
NormalizedUserName = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
Name = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |
|
|
|
Surname = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |
|
|
|
Email = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
NormalizedEmail = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
EmailConfirmed = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
|
|
PasswordHash = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true), |
|
|
|
SecurityStamp = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
IsExternal = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
|
|
PhoneNumber = table.Column<string>(type: "nvarchar(16)", maxLength: 16, nullable: true), |
|
|
|
PhoneNumberConfirmed = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
|
|
IsActive = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
TwoFactorEnabled = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
|
|
LockoutEnd = table.Column<DateTimeOffset>(type: "datetimeoffset", nullable: true), |
|
|
|
LockoutEnabled = table.Column<bool>(type: "bit", nullable: false, defaultValue: false), |
|
|
|
AccessFailedCount = table.Column<int>(type: "int", nullable: false, defaultValue: 0), |
|
|
|
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) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
UserName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
NormalizedUserName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
Name = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: true), |
|
|
|
Surname = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: true), |
|
|
|
Email = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
NormalizedEmail = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
EmailConfirmed = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
PasswordHash = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true), |
|
|
|
SecurityStamp = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
IsExternal = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
PhoneNumber = table.Column<string>(type: "character varying(16)", maxLength: 16, nullable: true), |
|
|
|
PhoneNumberConfirmed = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
IsActive = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
TwoFactorEnabled = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
LockoutEnd = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true), |
|
|
|
LockoutEnabled = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
AccessFailedCount = table.Column<int>(type: "integer", nullable: false, defaultValue: 0), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
LastModificationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true), |
|
|
|
LastModifierId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
IsDeleted = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
DeleterId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
DeletionTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -159,22 +159,22 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerApiResources", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Name = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
DisplayName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
|
|
Enabled = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
AllowedAccessTokenSigningAlgorithms = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
|
|
ShowInDiscoveryDocument = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
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) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Name = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
DisplayName = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(type: "character varying(1000)", maxLength: 1000, nullable: true), |
|
|
|
Enabled = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
AllowedAccessTokenSigningAlgorithms = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true), |
|
|
|
ShowInDiscoveryDocument = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
LastModificationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true), |
|
|
|
LastModifierId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
IsDeleted = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
DeleterId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
DeletionTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -185,23 +185,23 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerApiScopes", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Enabled = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
Name = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
DisplayName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
|
|
Required = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
Emphasize = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
ShowInDiscoveryDocument = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
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) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Enabled = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
Name = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
DisplayName = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(type: "character varying(1000)", maxLength: 1000, nullable: true), |
|
|
|
Required = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
Emphasize = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
ShowInDiscoveryDocument = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
LastModificationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true), |
|
|
|
LastModifierId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
IsDeleted = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
DeleterId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
DeletionTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -212,55 +212,55 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerClients", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
ClientId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
ClientName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
|
|
ClientUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
|
|
LogoUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
|
|
Enabled = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
ProtocolType = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
RequireClientSecret = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
RequireConsent = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
AllowRememberConsent = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
AlwaysIncludeUserClaimsInIdToken = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
RequirePkce = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
AllowPlainTextPkce = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
RequireRequestObject = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
AllowAccessTokensViaBrowser = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
FrontChannelLogoutUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
|
|
FrontChannelLogoutSessionRequired = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
BackChannelLogoutUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
|
|
BackChannelLogoutSessionRequired = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
AllowOfflineAccess = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
IdentityTokenLifetime = table.Column<int>(type: "int", nullable: false), |
|
|
|
AllowedIdentityTokenSigningAlgorithms = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
|
|
AccessTokenLifetime = table.Column<int>(type: "int", nullable: false), |
|
|
|
AuthorizationCodeLifetime = table.Column<int>(type: "int", nullable: false), |
|
|
|
ConsentLifetime = table.Column<int>(type: "int", nullable: true), |
|
|
|
AbsoluteRefreshTokenLifetime = table.Column<int>(type: "int", nullable: false), |
|
|
|
SlidingRefreshTokenLifetime = table.Column<int>(type: "int", nullable: false), |
|
|
|
RefreshTokenUsage = table.Column<int>(type: "int", nullable: false), |
|
|
|
UpdateAccessTokenClaimsOnRefresh = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
RefreshTokenExpiration = table.Column<int>(type: "int", nullable: false), |
|
|
|
AccessTokenType = table.Column<int>(type: "int", nullable: false), |
|
|
|
EnableLocalLogin = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
IncludeJwtId = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
AlwaysSendClientClaims = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
ClientClaimsPrefix = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
PairWiseSubjectSalt = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
UserSsoLifetime = table.Column<int>(type: "int", nullable: true), |
|
|
|
UserCodeType = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
|
|
DeviceCodeLifetime = table.Column<int>(type: "int", nullable: false), |
|
|
|
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) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
ClientId = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
ClientName = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(type: "character varying(1000)", maxLength: 1000, nullable: true), |
|
|
|
ClientUri = table.Column<string>(type: "character varying(2000)", maxLength: 2000, nullable: true), |
|
|
|
LogoUri = table.Column<string>(type: "character varying(2000)", maxLength: 2000, nullable: true), |
|
|
|
Enabled = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
ProtocolType = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
RequireClientSecret = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
RequireConsent = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
AllowRememberConsent = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
AlwaysIncludeUserClaimsInIdToken = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
RequirePkce = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
AllowPlainTextPkce = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
RequireRequestObject = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
AllowAccessTokensViaBrowser = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
FrontChannelLogoutUri = table.Column<string>(type: "character varying(2000)", maxLength: 2000, nullable: true), |
|
|
|
FrontChannelLogoutSessionRequired = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
BackChannelLogoutUri = table.Column<string>(type: "character varying(2000)", maxLength: 2000, nullable: true), |
|
|
|
BackChannelLogoutSessionRequired = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
AllowOfflineAccess = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
IdentityTokenLifetime = table.Column<int>(type: "integer", nullable: false), |
|
|
|
AllowedIdentityTokenSigningAlgorithms = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true), |
|
|
|
AccessTokenLifetime = table.Column<int>(type: "integer", nullable: false), |
|
|
|
AuthorizationCodeLifetime = table.Column<int>(type: "integer", nullable: false), |
|
|
|
ConsentLifetime = table.Column<int>(type: "integer", nullable: true), |
|
|
|
AbsoluteRefreshTokenLifetime = table.Column<int>(type: "integer", nullable: false), |
|
|
|
SlidingRefreshTokenLifetime = table.Column<int>(type: "integer", nullable: false), |
|
|
|
RefreshTokenUsage = table.Column<int>(type: "integer", nullable: false), |
|
|
|
UpdateAccessTokenClaimsOnRefresh = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
RefreshTokenExpiration = table.Column<int>(type: "integer", nullable: false), |
|
|
|
AccessTokenType = table.Column<int>(type: "integer", nullable: false), |
|
|
|
EnableLocalLogin = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
IncludeJwtId = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
AlwaysSendClientClaims = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
ClientClaimsPrefix = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
PairWiseSubjectSalt = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
UserSsoLifetime = table.Column<int>(type: "integer", nullable: true), |
|
|
|
UserCodeType = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true), |
|
|
|
DeviceCodeLifetime = table.Column<int>(type: "integer", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
LastModificationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true), |
|
|
|
LastModifierId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
IsDeleted = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
DeleterId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
DeletionTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -271,19 +271,19 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerDeviceFlowCodes", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
DeviceCode = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
UserCode = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
SubjectId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
SessionId = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
|
|
ClientId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
Description = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
Expiration = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
|
|
Data = table.Column<string>(type: "nvarchar(max)", maxLength: 50000, nullable: false), |
|
|
|
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) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
DeviceCode = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
UserCode = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
SubjectId = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
SessionId = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true), |
|
|
|
ClientId = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
Description = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
Expiration = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
Data = table.Column<string>(type: "character varying(50000)", maxLength: 50000, nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -294,23 +294,23 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerIdentityResources", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Name = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
DisplayName = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
|
|
Enabled = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
Required = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
Emphasize = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
ShowInDiscoveryDocument = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
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) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Name = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
DisplayName = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(type: "character varying(1000)", maxLength: 1000, nullable: true), |
|
|
|
Enabled = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
Required = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
Emphasize = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
ShowInDiscoveryDocument = table.Column<bool>(type: "boolean", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
LastModificationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true), |
|
|
|
LastModifierId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
IsDeleted = table.Column<bool>(type: "boolean", nullable: false, defaultValue: false), |
|
|
|
DeleterId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
DeletionTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -321,19 +321,19 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerPersistedGrants", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Key = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
Type = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: false), |
|
|
|
SubjectId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
SessionId = table.Column<string>(type: "nvarchar(100)", maxLength: 100, nullable: true), |
|
|
|
ClientId = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
Description = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
|
|
Expiration = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
|
|
ConsumedTime = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
|
|
Data = table.Column<string>(type: "nvarchar(max)", maxLength: 50000, nullable: false), |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true) |
|
|
|
Key = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
Type = table.Column<string>(type: "character varying(50)", maxLength: 50, nullable: false), |
|
|
|
SubjectId = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
SessionId = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: true), |
|
|
|
ClientId = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
Description = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
Expiration = table.Column<DateTime>(type: "timestamp with time zone", nullable: true), |
|
|
|
ConsumedTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: true), |
|
|
|
Data = table.Column<string>(type: "character varying(50000)", maxLength: 50000, nullable: false), |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "text", nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "character varying(40)", maxLength: 40, nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -344,17 +344,17 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpOrganizationUnitRoles", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
RoleId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
OrganizationUnitId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true) |
|
|
|
RoleId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
OrganizationUnitId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_AbpOrganizationUnitRoles", x => new { x.OrganizationUnitId, x.RoleId }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_AbpOrganizationUnitRoles_AbpOrganizationUnits_OrganizationUnitId", |
|
|
|
name: "FK_AbpOrganizationUnitRoles_AbpOrganizationUnits_OrganizationU~", |
|
|
|
column: x => x.OrganizationUnitId, |
|
|
|
principalTable: "AbpOrganizationUnits", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -371,11 +371,11 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpRoleClaims", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
RoleId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
ClaimType = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
ClaimValue = table.Column<string>(type: "nvarchar(1024)", maxLength: 1024, nullable: true) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
RoleId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
ClaimType = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
ClaimValue = table.Column<string>(type: "character varying(1024)", maxLength: 1024, nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -392,11 +392,11 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpUserClaims", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
ClaimType = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: false), |
|
|
|
ClaimValue = table.Column<string>(type: "nvarchar(1024)", maxLength: 1024, nullable: true) |
|
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
ClaimType = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false), |
|
|
|
ClaimValue = table.Column<string>(type: "character varying(1024)", maxLength: 1024, nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -413,11 +413,11 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpUserLogins", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
LoginProvider = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
ProviderKey = table.Column<string>(type: "nvarchar(196)", maxLength: 196, nullable: false), |
|
|
|
ProviderDisplayName = table.Column<string>(type: "nvarchar(128)", maxLength: 128, nullable: true) |
|
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
LoginProvider = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
ProviderKey = table.Column<string>(type: "character varying(196)", maxLength: 196, nullable: false), |
|
|
|
ProviderDisplayName = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -434,17 +434,17 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpUserOrganizationUnits", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
OrganizationUnitId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true) |
|
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
OrganizationUnitId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(type: "timestamp with time zone", nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(type: "uuid", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_AbpUserOrganizationUnits", x => new { x.OrganizationUnitId, x.UserId }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_AbpUserOrganizationUnits_AbpOrganizationUnits_OrganizationUnitId", |
|
|
|
name: "FK_AbpUserOrganizationUnits_AbpOrganizationUnits_OrganizationU~", |
|
|
|
column: x => x.OrganizationUnitId, |
|
|
|
principalTable: "AbpOrganizationUnits", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -461,9 +461,9 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpUserRoles", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
RoleId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true) |
|
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
RoleId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -486,11 +486,11 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "AbpUserTokens", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
LoginProvider = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: false), |
|
|
|
Name = table.Column<string>(type: "nvarchar(128)", maxLength: 128, nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
Value = table.Column<string>(type: "nvarchar(max)", nullable: true) |
|
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
LoginProvider = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: false), |
|
|
|
Name = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: false), |
|
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: true), |
|
|
|
Value = table.Column<string>(type: "text", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -507,14 +507,14 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerApiResourceClaims", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Type = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
ApiResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false) |
|
|
|
Type = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
ApiResourceId = table.Column<Guid>(type: "uuid", nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerApiResourceClaims", x => new { x.ApiResourceId, x.Type }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerApiResourceClaims_IdentityServerApiResources_ApiResourceId", |
|
|
|
name: "FK_IdentityServerApiResourceClaims_IdentityServerApiResources_~", |
|
|
|
column: x => x.ApiResourceId, |
|
|
|
principalTable: "IdentityServerApiResources", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -525,15 +525,15 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
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) |
|
|
|
ApiResourceId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Key = table.Column<string>(type: "character varying(250)", maxLength: 250, nullable: false), |
|
|
|
Value = table.Column<string>(type: "character varying(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", |
|
|
|
name: "FK_IdentityServerApiResourceProperties_IdentityServerApiResour~", |
|
|
|
column: x => x.ApiResourceId, |
|
|
|
principalTable: "IdentityServerApiResources", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -544,14 +544,14 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerApiResourceScopes", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
ApiResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Scope = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
|
|
ApiResourceId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Scope = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerApiResourceScopes", x => new { x.ApiResourceId, x.Scope }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerApiResourceScopes_IdentityServerApiResources_ApiResourceId", |
|
|
|
name: "FK_IdentityServerApiResourceScopes_IdentityServerApiResources_~", |
|
|
|
column: x => x.ApiResourceId, |
|
|
|
principalTable: "IdentityServerApiResources", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -562,17 +562,17 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerApiResourceSecrets", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Type = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false), |
|
|
|
Value = table.Column<string>(type: "nvarchar(4000)", maxLength: 4000, nullable: false), |
|
|
|
ApiResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Description = table.Column<string>(type: "nvarchar(1000)", maxLength: 1000, nullable: true), |
|
|
|
Expiration = table.Column<DateTime>(type: "datetime2", nullable: true) |
|
|
|
Type = table.Column<string>(type: "character varying(250)", maxLength: 250, nullable: false), |
|
|
|
Value = table.Column<string>(type: "character varying(4000)", maxLength: 4000, nullable: false), |
|
|
|
ApiResourceId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Description = table.Column<string>(type: "character varying(1000)", maxLength: 1000, nullable: true), |
|
|
|
Expiration = table.Column<DateTime>(type: "timestamp with time zone", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerApiResourceSecrets", x => new { x.ApiResourceId, x.Type, x.Value }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerApiResourceSecrets_IdentityServerApiResources_ApiResourceId", |
|
|
|
name: "FK_IdentityServerApiResourceSecrets_IdentityServerApiResources~", |
|
|
|
column: x => x.ApiResourceId, |
|
|
|
principalTable: "IdentityServerApiResources", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -583,14 +583,14 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerApiScopeClaims", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Type = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
ApiScopeId = table.Column<Guid>(type: "uniqueidentifier", nullable: false) |
|
|
|
Type = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
ApiScopeId = table.Column<Guid>(type: "uuid", nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerApiScopeClaims", x => new { x.ApiScopeId, x.Type }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerApiScopeClaims_IdentityServerApiScopes_ApiScopeId", |
|
|
|
name: "FK_IdentityServerApiScopeClaims_IdentityServerApiScopes_ApiSco~", |
|
|
|
column: x => x.ApiScopeId, |
|
|
|
principalTable: "IdentityServerApiScopes", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -601,15 +601,15 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
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) |
|
|
|
ApiScopeId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Key = table.Column<string>(type: "character varying(250)", maxLength: 250, nullable: false), |
|
|
|
Value = table.Column<string>(type: "character varying(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", |
|
|
|
name: "FK_IdentityServerApiScopeProperties_IdentityServerApiScopes_Ap~", |
|
|
|
column: x => x.ApiScopeId, |
|
|
|
principalTable: "IdentityServerApiScopes", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -620,9 +620,9 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
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) |
|
|
|
ClientId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Type = table.Column<string>(type: "character varying(250)", maxLength: 250, nullable: false), |
|
|
|
Value = table.Column<string>(type: "character varying(250)", maxLength: 250, nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -639,14 +639,14 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerClientCorsOrigins", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Origin = table.Column<string>(type: "nvarchar(150)", maxLength: 150, nullable: false) |
|
|
|
ClientId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Origin = table.Column<string>(type: "character varying(150)", maxLength: 150, nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerClientCorsOrigins", x => new { x.ClientId, x.Origin }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerClientCorsOrigins_IdentityServerClients_ClientId", |
|
|
|
name: "FK_IdentityServerClientCorsOrigins_IdentityServerClients_Clien~", |
|
|
|
column: x => x.ClientId, |
|
|
|
principalTable: "IdentityServerClients", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -657,14 +657,14 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerClientGrantTypes", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
GrantType = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false) |
|
|
|
ClientId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
GrantType = table.Column<string>(type: "character varying(250)", maxLength: 250, nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerClientGrantTypes", x => new { x.ClientId, x.GrantType }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerClientGrantTypes_IdentityServerClients_ClientId", |
|
|
|
name: "FK_IdentityServerClientGrantTypes_IdentityServerClients_Client~", |
|
|
|
column: x => x.ClientId, |
|
|
|
principalTable: "IdentityServerClients", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -675,14 +675,14 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerClientIdPRestrictions", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Provider = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
|
|
ClientId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Provider = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerClientIdPRestrictions", x => new { x.ClientId, x.Provider }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerClientIdPRestrictions_IdentityServerClients_ClientId", |
|
|
|
name: "FK_IdentityServerClientIdPRestrictions_IdentityServerClients_C~", |
|
|
|
column: x => x.ClientId, |
|
|
|
principalTable: "IdentityServerClients", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -693,14 +693,14 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerClientPostLogoutRedirectUris", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
PostLogoutRedirectUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: false) |
|
|
|
ClientId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
PostLogoutRedirectUri = table.Column<string>(type: "character varying(2000)", maxLength: 2000, nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerClientPostLogoutRedirectUris", x => new { x.ClientId, x.PostLogoutRedirectUri }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerClientPostLogoutRedirectUris_IdentityServerClients_ClientId", |
|
|
|
name: "FK_IdentityServerClientPostLogoutRedirectUris_IdentityServerCl~", |
|
|
|
column: x => x.ClientId, |
|
|
|
principalTable: "IdentityServerClients", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -711,15 +711,15 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
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) |
|
|
|
ClientId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Key = table.Column<string>(type: "character varying(250)", maxLength: 250, nullable: false), |
|
|
|
Value = table.Column<string>(type: "character varying(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", |
|
|
|
name: "FK_IdentityServerClientProperties_IdentityServerClients_Client~", |
|
|
|
column: x => x.ClientId, |
|
|
|
principalTable: "IdentityServerClients", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -730,14 +730,14 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerClientRedirectUris", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
RedirectUri = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: false) |
|
|
|
ClientId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
RedirectUri = table.Column<string>(type: "character varying(2000)", maxLength: 2000, nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerClientRedirectUris", x => new { x.ClientId, x.RedirectUri }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerClientRedirectUris_IdentityServerClients_ClientId", |
|
|
|
name: "FK_IdentityServerClientRedirectUris_IdentityServerClients_Clie~", |
|
|
|
column: x => x.ClientId, |
|
|
|
principalTable: "IdentityServerClients", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -748,8 +748,8 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerClientScopes", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Scope = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false) |
|
|
|
ClientId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Scope = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -766,11 +766,11 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerClientSecrets", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Type = table.Column<string>(type: "nvarchar(250)", maxLength: 250, nullable: false), |
|
|
|
Value = table.Column<string>(type: "nvarchar(4000)", maxLength: 4000, nullable: false), |
|
|
|
ClientId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
Description = table.Column<string>(type: "nvarchar(2000)", maxLength: 2000, nullable: true), |
|
|
|
Expiration = table.Column<DateTime>(type: "datetime2", nullable: true) |
|
|
|
Type = table.Column<string>(type: "character varying(250)", maxLength: 250, nullable: false), |
|
|
|
Value = table.Column<string>(type: "character varying(4000)", maxLength: 4000, nullable: false), |
|
|
|
ClientId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Description = table.Column<string>(type: "character varying(2000)", maxLength: 2000, nullable: true), |
|
|
|
Expiration = table.Column<DateTime>(type: "timestamp with time zone", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
@ -787,14 +787,14 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
name: "IdentityServerIdentityResourceClaims", |
|
|
|
columns: table => new |
|
|
|
{ |
|
|
|
Type = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: false), |
|
|
|
IdentityResourceId = table.Column<Guid>(type: "uniqueidentifier", nullable: false) |
|
|
|
Type = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: false), |
|
|
|
IdentityResourceId = table.Column<Guid>(type: "uuid", nullable: false) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |
|
|
|
table.PrimaryKey("PK_IdentityServerIdentityResourceClaims", x => new { x.IdentityResourceId, x.Type }); |
|
|
|
table.ForeignKey( |
|
|
|
name: "FK_IdentityServerIdentityResourceClaims_IdentityServerIdentityResources_IdentityResourceId", |
|
|
|
name: "FK_IdentityServerIdentityResourceClaims_IdentityServerIdentity~", |
|
|
|
column: x => x.IdentityResourceId, |
|
|
|
principalTable: "IdentityServerIdentityResources", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -805,15 +805,15 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
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) |
|
|
|
IdentityResourceId = table.Column<Guid>(type: "uuid", nullable: false), |
|
|
|
Key = table.Column<string>(type: "character varying(250)", maxLength: 250, nullable: false), |
|
|
|
Value = table.Column<string>(type: "character varying(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", |
|
|
|
name: "FK_IdentityServerIdentityResourceProperties_IdentityServerIden~", |
|
|
|
column: x => x.IdentityResourceId, |
|
|
|
principalTable: "IdentityServerIdentityResources", |
|
|
|
principalColumn: "Id", |
|
|
|
@ -821,11 +821,10 @@ namespace EShopOnAbp.IdentityService.Migrations |
|
|
|
}); |
|
|
|
|
|
|
|
migrationBuilder.CreateIndex( |
|
|
|
name: "IX_AbpLinkUsers_SourceUserId_SourceTenantId_TargetUserId_TargetTenantId", |
|
|
|
name: "IX_AbpLinkUsers_SourceUserId_SourceTenantId_TargetUserId_Targe~", |
|
|
|
table: "AbpLinkUsers", |
|
|
|
columns: new[] { "SourceUserId", "SourceTenantId", "TargetUserId", "TargetTenantId" }, |
|
|
|
unique: true, |
|
|
|
filter: "[SourceTenantId] IS NOT NULL AND [TargetTenantId] IS NOT NULL"); |
|
|
|
unique: true); |
|
|
|
|
|
|
|
migrationBuilder.CreateIndex( |
|
|
|
name: "IX_AbpOrganizationUnitRoles_RoleId_OrganizationUnitId", |