Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 558 Bytes

MIGRATION.md

File metadata and controls

26 lines (20 loc) · 558 Bytes

Migration Guide

This document describes the changes that need to be made to migrate from one version of the blog to another.

8.0 to 9.0

A new SimilarBlogPost table is introduced to store similar blog posts.

CREATE TABLE SimilarBlogPosts
(
	Id [NVARCHAR](450) NOT NULL,
	SimilarBlogPostIds NVARCHAR(1350) NOT NULL,
)

ALTER TABLE SimilarBlogPosts
ADD CONSTRAINT PK_SimilarBlogPosts PRIMARY KEY (Id)

Add the following to the appsettings.json:

{
	"SimilarBlogPosts": true
}

Or false if you don't want to use this feature.