|
|
|
@ -18,9 +18,11 @@ namespace MyCompanyName.MyProjectName.Migrations |
|
|
|
UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
UserName = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true), |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
TenantName = table.Column<string>(type: "nvarchar(max)", nullable: true), |
|
|
|
TenantName = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |
|
|
|
ImpersonatorUserId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
ImpersonatorUserName = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true), |
|
|
|
ImpersonatorTenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
ImpersonatorTenantName = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |
|
|
|
ExecutionTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
|
|
ExecutionDuration = table.Column<int>(type: "int", nullable: false), |
|
|
|
ClientIpAddress = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |