|
|
|
@ -18,6 +18,7 @@ namespace IdentityServerHost.Migrations |
|
|
|
UserId = table.Column<Guid>(nullable: true), |
|
|
|
UserName = table.Column<string>(maxLength: 256, nullable: true), |
|
|
|
TenantId = table.Column<Guid>(nullable: true), |
|
|
|
TenantName = table.Column<string>(nullable: true), |
|
|
|
ImpersonatorUserId = table.Column<Guid>(nullable: true), |
|
|
|
ImpersonatorTenantId = table.Column<Guid>(nullable: true), |
|
|
|
ExecutionTime = table.Column<DateTime>(nullable: false), |
|
|
|
@ -150,6 +151,13 @@ namespace IdentityServerHost.Migrations |
|
|
|
Id = table.Column<Guid>(nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(nullable: true), |
|
|
|
LastModificationTime = table.Column<DateTime>(nullable: true), |
|
|
|
LastModifierId = table.Column<Guid>(nullable: true), |
|
|
|
IsDeleted = table.Column<bool>(nullable: false, defaultValue: false), |
|
|
|
DeleterId = table.Column<Guid>(nullable: true), |
|
|
|
DeletionTime = table.Column<DateTime>(nullable: true), |
|
|
|
Name = table.Column<string>(maxLength: 200, nullable: false), |
|
|
|
DisplayName = table.Column<string>(maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(maxLength: 1000, nullable: true), |
|
|
|
@ -167,6 +175,13 @@ namespace IdentityServerHost.Migrations |
|
|
|
Id = table.Column<Guid>(nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(nullable: true), |
|
|
|
LastModificationTime = table.Column<DateTime>(nullable: true), |
|
|
|
LastModifierId = table.Column<Guid>(nullable: true), |
|
|
|
IsDeleted = table.Column<bool>(nullable: false, defaultValue: false), |
|
|
|
DeleterId = table.Column<Guid>(nullable: true), |
|
|
|
DeletionTime = table.Column<DateTime>(nullable: true), |
|
|
|
ClientId = table.Column<string>(maxLength: 200, nullable: false), |
|
|
|
ClientName = table.Column<string>(maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(maxLength: 1000, nullable: true), |
|
|
|
@ -214,6 +229,13 @@ namespace IdentityServerHost.Migrations |
|
|
|
Id = table.Column<Guid>(nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(nullable: true), |
|
|
|
ConcurrencyStamp = table.Column<string>(nullable: true), |
|
|
|
CreationTime = table.Column<DateTime>(nullable: false), |
|
|
|
CreatorId = table.Column<Guid>(nullable: true), |
|
|
|
LastModificationTime = table.Column<DateTime>(nullable: true), |
|
|
|
LastModifierId = table.Column<Guid>(nullable: true), |
|
|
|
IsDeleted = table.Column<bool>(nullable: false, defaultValue: false), |
|
|
|
DeleterId = table.Column<Guid>(nullable: true), |
|
|
|
DeletionTime = table.Column<DateTime>(nullable: true), |
|
|
|
Name = table.Column<string>(maxLength: 200, nullable: false), |
|
|
|
DisplayName = table.Column<string>(maxLength: 200, nullable: true), |
|
|
|
Description = table.Column<string>(maxLength: 1000, nullable: true), |
|
|
|
@ -281,6 +303,7 @@ namespace IdentityServerHost.Migrations |
|
|
|
TenantId = table.Column<Guid>(nullable: true), |
|
|
|
ChangeTime = table.Column<DateTime>(nullable: false), |
|
|
|
ChangeType = table.Column<byte>(nullable: false), |
|
|
|
EntityTenantId = table.Column<Guid>(nullable: true), |
|
|
|
EntityId = table.Column<string>(maxLength: 128, nullable: false), |
|
|
|
EntityTypeFullName = table.Column<string>(maxLength: 128, nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(nullable: true) |