Skip to content

v1.7

Compare
Choose a tag to compare
@linkdotnet linkdotnet released this 07 Sep 11:21
· 1323 commits to master since this release
f6e8f71

New Features

  • Analytics Platform implemented - You can now see how your blog was clicked

Migration

To migrate to the latest version (when using SQL database) please apply the following migration:

CREATE TABLE [dbo].[userrecords]
  (
     [id]                 [NVARCHAR](450) NOT NULL,
     [useridentifierhash] [INT] NOT NULL,
     [datetimeutcclicked] [DATETIME2](7) NOT NULL,
     [urlclicked]         [NVARCHAR](max) NULL,
     CONSTRAINT [PK_UserRecords] PRIMARY KEY CLUSTERED ( [id] ASC )
  )