|
|
|
@ -506,6 +506,7 @@ namespace Volo.CmsKit.Migrations
|
|
|
|
|
Script = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
Style = table.Column<string>(type: "nvarchar(max)", nullable: true),
|
|
|
|
|
IsHomePage = 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),
|
|
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|
|
|
@ -869,6 +870,7 @@ namespace Volo.CmsKit.Migrations
|
|
|
|
|
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true),
|
|
|
|
|
AuthorId = table.Column<Guid>(type: "uniqueidentifier", nullable: false),
|
|
|
|
|
Status = table.Column<int>(type: "int", 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),
|
|
|
|
|
CreationTime = table.Column<DateTime>(type: "datetime2", nullable: false),
|