|
|
|
|
@ -37,8 +37,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
Exceptions = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
Comments = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true),
|
|
|
|
|
HttpStatusCode = table.Column<int>(type: "int", nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true)
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
@ -58,8 +58,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
LastTryTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
|
|
|
IsAbandoned = table.Column<bool>(type: "bit", nullable: false, defaultValue: false),
|
|
|
|
|
Priority = table.Column<byte>(type: "tinyint", nullable: false, defaultValue: (byte)15),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true)
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
@ -78,8 +78,8 @@ namespace MyCompanyName.MyProjectName.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),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true)
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
@ -162,8 +162,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
Code = table.Column<string>(type: "nvarchar(95)", maxLength: 95, nullable: false),
|
|
|
|
|
DisplayName = table.Column<string>(type: "nvarchar(128)", maxLength: 128, nullable: false),
|
|
|
|
|
EntityVersion = 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),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false),
|
|
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
|
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
|
|
|
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
|
|
|
@ -243,8 +243,8 @@ namespace MyCompanyName.MyProjectName.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),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true)
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
@ -268,8 +268,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
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)
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
@ -318,8 +318,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
|
|
|
|
Name = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: false),
|
|
|
|
|
EntityVersion = 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),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false),
|
|
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
|
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
|
|
|
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
|
|
|
@ -375,8 +375,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
ShouldChangePasswordOnNextLogin = table.Column<bool>(type: "bit", nullable: false),
|
|
|
|
|
EntityVersion = table.Column<int>(type: "int", nullable: false),
|
|
|
|
|
LastPasswordChangeTime = table.Column<DateTimeOffset>(type: "datetimeoffset", nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false),
|
|
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
|
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
|
|
|
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
|
|
|
@ -408,8 +408,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
Type = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
|
|
|
|
|
ClientUri = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
LogoUri = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false),
|
|
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
|
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
|
|
|
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
|
|
|
@ -435,8 +435,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
Name = table.Column<string>(type: "nvarchar(200)", maxLength: 200, nullable: true),
|
|
|
|
|
Properties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
Resources = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false),
|
|
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
|
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
|
|
|
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
|
|
|
@ -694,8 +694,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
Status = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
|
|
|
|
|
Subject = table.Column<string>(type: "nvarchar(400)", maxLength: 400, nullable: true),
|
|
|
|
|
Type = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false),
|
|
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
|
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
|
|
|
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|
|
|
|
|
@ -753,8 +753,8 @@ namespace MyCompanyName.MyProjectName.Migrations
|
|
|
|
|
Status = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
|
|
|
|
|
Subject = table.Column<string>(type: "nvarchar(400)", maxLength: 400, nullable: true),
|
|
|
|
|
Type = table.Column<string>(type: "nvarchar(50)", maxLength: 50, nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: true),
|
|
|
|
|
ExtraProperties = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|
|
|
|
ConcurrencyStamp = table.Column<string>(type: "nvarchar(40)", maxLength: 40, nullable: false),
|
|
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
|
|
|
CreatorId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
|
|
|
LastModificationTime = table.Column<DateTime>(type: "datetime2", nullable: true),
|