|
|
|
@ -23,6 +23,7 @@ namespace Migrations |
|
|
|
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), |
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false) |
|
|
|
}, |
|
|
|
@ -137,6 +138,7 @@ namespace Migrations |
|
|
|
IsStatic = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
IsPublic = table.Column<bool>(type: "bit", nullable: false), |
|
|
|
EntityVersion = table.Column<int>(type: "int", nullable: false), |
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false), |
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false) |
|
|
|
}, |
|
|
|
@ -181,9 +183,10 @@ namespace Migrations |
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), |
|
|
|
UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), |
|
|
|
ClientId = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), |
|
|
|
IpAddresses = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true), |
|
|
|
IpAddresses = table.Column<string>(type: "nvarchar(2048)", maxLength: 2048, nullable: true), |
|
|
|
SignedIn = table.Column<DateTime>(type: "datetime2", nullable: false), |
|
|
|
LastAccessed = table.Column<DateTime>(type: "datetime2", nullable: true) |
|
|
|
LastAccessed = table.Column<DateTime>(type: "datetime2", nullable: true), |
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true) |
|
|
|
}, |
|
|
|
constraints: table => |
|
|
|
{ |