Fix cmsContentNu table creation during install
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
using NPoco;
|
||||
using Umbraco.Core.Models.Rdbms;
|
||||
using Umbraco.Core.Persistence.DatabaseAnnotations;
|
||||
|
||||
namespace Umbraco.Web.PublishedCache.NuCache.DataSource
|
||||
namespace Umbraco.Core.Models.Rdbms
|
||||
{
|
||||
[TableName("cmsContentNu")]
|
||||
[PrimaryKey("nodeId", AutoIncrement = false)]
|
||||
@@ -84,7 +84,8 @@ namespace Umbraco.Core.Persistence.Migrations.Initial
|
||||
{46, typeof (UmbracoDeployChecksumDto)},
|
||||
{47, typeof (UmbracoDeployDependencyDto)},
|
||||
{48, typeof (RedirectUrlDto) },
|
||||
{49, typeof (LockDto) }
|
||||
{49, typeof (LockDto) },
|
||||
{50, typeof (ContentNuDto) }
|
||||
};
|
||||
#endregion
|
||||
|
||||
|
||||
@@ -294,6 +294,7 @@
|
||||
<Compile Include="Models\PublishedContent\NoopPublishedContentModelFactory.cs" />
|
||||
<Compile Include="Models\PublishedContent\PropertyResult.cs" />
|
||||
<Compile Include="Models\PublishedContent\PropertyResultType.cs" />
|
||||
<Compile Include="Models\Rdbms\ContentNuDto.cs" />
|
||||
<Compile Include="Persistence\IUmbracoDatabaseAccessor.cs" />
|
||||
<Compile Include="Persistence\Mappers\IMapperCollection.cs" />
|
||||
<Compile Include="Persistence\Mappers\MapperCollection.cs" />
|
||||
|
||||
@@ -13,6 +13,7 @@ using Umbraco.Core.Logging;
|
||||
using Umbraco.Core.Models;
|
||||
using Umbraco.Core.Models.Membership;
|
||||
using Umbraco.Core.Models.PublishedContent;
|
||||
using Umbraco.Core.Models.Rdbms;
|
||||
using Umbraco.Core.Persistence;
|
||||
using Umbraco.Core.Persistence.DatabaseModelDefinitions;
|
||||
using Umbraco.Core.Persistence.Repositories;
|
||||
|
||||
@@ -244,7 +244,6 @@
|
||||
<Compile Include="PublishedCache\NuCache\ContentStore2.cs" />
|
||||
<Compile Include="PublishedCache\NuCache\DataSource\BTree.cs" />
|
||||
<Compile Include="PublishedCache\NuCache\DataSource\ContentData.cs" />
|
||||
<Compile Include="PublishedCache\NuCache\DataSource\ContentNuDto.cs" />
|
||||
<Compile Include="PublishedCache\NuCache\DataSource\ContentSourceDto.cs" />
|
||||
<Compile Include="PublishedCache\NuCache\DataSource\Database.cs" />
|
||||
<Compile Include="PublishedCache\NuCache\DomainCache.cs" />
|
||||
|
||||
Reference in New Issue
Block a user